From 2028d9097b02a71e1c0e98e86c829128c23d40a9 Mon Sep 17 00:00:00 2001 From: Ivange Larry Date: Tue, 5 Dec 2017 14:57:24 -0600 Subject: [PATCH] Add glossory entry for ReplicaSet --- _data/glossary/replica-set.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 _data/glossary/replica-set.yml diff --git a/_data/glossary/replica-set.yml b/_data/glossary/replica-set.yml new file mode 100644 index 0000000000..74d987b588 --- /dev/null +++ b/_data/glossary/replica-set.yml @@ -0,0 +1,13 @@ +id: replica-set +name: ReplicaSet +full-link: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/ +related: +- replication-controller +tags: +- core-object +- architecture +short-description: > + ReplicaSet is the next-generation Replication Controller. +long-description: > + ReplicaSet, like ReplicationController, ensures that a specified number of pods replicas are running at one time. + ReplicaSet supports the new set-based selector requirements as described in the labels user guide, whereas a Replication Controller only supports equality-based selector requirements.