From 0f79678cd52e7bee0bf9d5a7a992325a9634a927 Mon Sep 17 00:00:00 2001 From: Hyunchel Kim Date: Wed, 31 Aug 2016 09:35:48 -0500 Subject: [PATCH 1/2] Fix spelling --- docs/user-guide/replication-controller/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/replication-controller/index.md b/docs/user-guide/replication-controller/index.md index d5f4cfe10b..3197f81c1b 100644 --- a/docs/user-guide/replication-controller/index.md +++ b/docs/user-guide/replication-controller/index.md @@ -114,7 +114,7 @@ for example the [Kubelet](/docs/admin/kubelet/) or Docker. The replication controller can itself have labels (`.metadata.labels`). Typically, you would set these the same as the `.spec.template.metadata.labels`; if `.metadata.labels` is not specified then it is defaulted to `.spec.template.metadata.labels`. However, they are allowed to be -different, and the `.metadata.labels` do not affec the behavior of the replication controller. +different, and the `.metadata.labels` do not affect the behavior of the replication controller. ### Pod Selector From 44c9508a401ba5b098149654cad7c6b6cde4a4ba Mon Sep 17 00:00:00 2001 From: Hyunchel Kim Date: Wed, 31 Aug 2016 10:17:46 -0500 Subject: [PATCH 2/2] Correct grammar --- docs/user-guide/replication-controller/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/replication-controller/index.md b/docs/user-guide/replication-controller/index.md index 3197f81c1b..61263d4994 100644 --- a/docs/user-guide/replication-controller/index.md +++ b/docs/user-guide/replication-controller/index.md @@ -254,8 +254,8 @@ Use a [`Job`](/docs/user-guide/jobs/) instead of a replication controller for po ### DaemonSet Use a [`DaemonSet`](/docs/admin/daemons/) instead of a replication controller for pods that provide a -machine-level function, such as machine monitoring or machine logging. These pods have a lifetime is tied -to machine lifetime: the pod needs to be running on the machine before other pods start, and are +machine-level function, such as machine monitoring or machine logging. These pods have a lifetime that is tied +to a machine lifetime: the pod needs to be running on the machine before other pods start, and are safe to terminate when the machine is otherwise ready to be rebooted/shutdown. ## For more information