summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Szulik <maszulik@redhat.com>2017-05-02 21:56:09 +0200
committerMaciej Szulik <maszulik@redhat.com>2017-05-02 21:56:09 +0200
commit00def1fb867fa9f29acc006f6fe4acfe725f285b (patch)
tree595d8a3461bda06f6598b098145c0f68227d7354
parentcaee4947ba30dd2267accaeeb00e6bd0feb2c82f (diff)
Address comments
-rw-r--r--contributors/design-proposals/job.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/contributors/design-proposals/job.md b/contributors/design-proposals/job.md
index 9653e6cc..9c0f13c1 100644
--- a/contributors/design-proposals/job.md
+++ b/contributors/design-proposals/job.md
@@ -34,12 +34,12 @@ which is mistakenly taken as Job's restart policy ([#30243](https://github.com/k
[#[43964](https://github.com/kubernetes/kubernetes/issues/43964)]). There are
situation where one wants to fail a Job after some amount of retries over a certain
period of time, due to a logical error in configuration etc. To do so we are going
-to introduce following fields will be introduced, which will control the exponential
-backoff when retrying a Job: number of retries and time to retry. The two fields
-will allow creating a fine-grained control over the backoff policy, limiting the
-number of retries over a specified period of time. If only one of the two fields
-is supplied, an exponential backoff with an intervening duration of ten seconds
-and a factor of two will be applied, such that either:
+to introduce following fields, which will control the exponential backoff when
+retrying a Job: number of retries and time to retry. The two fields will allow
+fine-grained control over the backoff policy, limiting the number of retries over
+a specified period of time. If only one of the two fields is supplied, an exponential
+backoff with an intervening duration of ten seconds and a factor of two will be
+applied, such that either:
* the number of retries will not exceed a specified count, if present, or
* the maximum time elapsed will not exceed the specified duration, if present.