Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
abregman committed Jul 20, 2021
2 parents 4fd5c25 + ad796f7 commit 1d88242
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6088,10 +6088,16 @@ It includes:
<details>
<summary>What is the purpose of ReplicaSet?</summary><br><b>
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.
</b></details>
<details>
<summary>How a ReplicaSet works?</summary><br><b>
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.
</b></details>
<details>
Expand Down

0 comments on commit 1d88242

Please sign in to comment.