From ad796f7155d1bb56c864e5fdea5267a49244d23c Mon Sep 17 00:00:00 2001
From: Jack McDonnell <52510979+McJacko@users.noreply.github.com>
Date: Tue, 20 Jul 2021 00:48:44 -0700
Subject: [PATCH] ReplicaSets Information (#141)
* Kubernetes Pod explanation (Jack McDonnell)
* Kubernetes Deployment explanation
* Kubectl explanation
* ReplicaSets information
---
README.md | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/README.md b/README.md
index 4ab5b4b..3273b3c 100644
--- a/README.md
+++ b/README.md
@@ -6060,10 +6060,16 @@ It includes:
What is the purpose of ReplicaSet?
+
+A ReplicaSet's purpose is to maintain a stable set of replica Pods running at any given time. As such, it is often used to guarantee the availability of a specified number of identical Pods.
How a ReplicaSet works?
+
+A ReplicaSet is defined with fields, including a selector that specifies how to identify Pods it can acquire, a number of replicas indicating how many Pods it should be maintaining, and a pod template specifying the data of new Pods it should create to meet the number of replicas criteria.
+
+A ReplicaSet then fulfills its purpose by creating and deleting Pods as needed to reach the desired number. When a ReplicaSet needs to create new Pods, it uses its Pod template.