Skip to content

Commit 607e9fc

Browse files
authored
Merge pull request kubernetes#1988 from matthyx/master
Document implementation history of startupProbe
2 parents 099b482 + aa25a88 commit 607e9fc

File tree

1 file changed

+41
-7
lines changed

1 file changed

+41
-7
lines changed

keps/sig-node/20190221-livenessprobe-holdoff.md

Lines changed: 41 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ approvers:
1313
- "@thockin"
1414
editor: TBD
1515
creation-date: 2019-02-21
16-
last-updated: 2019-05-18
17-
status: implementable
16+
last-updated: 2020-09-16
17+
status: implemented
1818
see-also:
1919
replaces:
2020
superseded-by:
@@ -39,6 +39,11 @@ superseded-by:
3939
- [Feature Gate](#feature-gate)
4040
- [Graduation Criteria](#graduation-criteria)
4141
- [Implementation History](#implementation-history)
42+
- [Version 1.16](#version-116)
43+
- [Version 1.17](#version-117)
44+
- [Version 1.18](#version-118)
45+
- [Version 1.19](#version-119)
46+
- [Version 1.20](#version-120)
4247
<!-- /toc -->
4348

4449
## Release Signoff Checklist
@@ -48,9 +53,9 @@ superseded-by:
4853
- [X] Design details are appropriately documented
4954
- [X] Test plan is in place, giving consideration to SIG Architecture and SIG Testing input
5055
- [X] Graduation criteria is in place
51-
- [ ] "Implementation History" section is up-to-date for milestone
56+
- [X] "Implementation History" section is up-to-date for milestone
5257
- [X] User-facing documentation has been created in [kubernetes/website], for publication to [kubernetes.io]
53-
- [ ] Supporting documentation e.g., additional design documents, links to mailing list discussions/SIG meetings, relevant PRs/issues, release notes
58+
- [X] Supporting documentation e.g., additional design documents, links to mailing list discussions/SIG meetings, relevant PRs/issues, release notes
5459

5560
[kubernetes.io]: https://kubernetes.io/
5661
[kubernetes/website]: https://github.com/kubernetes/website
@@ -187,11 +192,40 @@ E2e tests will also cover the main use-case for this probe:
187192
- 2019-04-11: open issue in enhancements [#950]
188193
- 2019-05-01: redesign to additional probe after @thockin [proposal]
189194
- 2019-05-02: add test plan
190-
- 2019-05-13: redesign implemented in new PR [#77807]
191-
- 2019-05-13: related documentation added in PR [#14297]
195+
196+
### Version 1.16
197+
198+
- Implement `startupProbe` as Alpha [#77807]
199+
- Cherry pick of #82747 [#83607]
200+
201+
### Version 1.17
202+
203+
- Fix `startup_probe_test.go` failing test [#82747]
204+
- Add `startupProbe` result handling to kuberuntime [#84279]
205+
- Clarify startupProbe e2e tests [#84291]
206+
207+
### Version 1.18
208+
209+
- Graduate `startupProbe` to Beta [#83437]
210+
- Cherry pick of #92196 [#92477]
211+
212+
### Version 1.19
213+
214+
- Pods which have not "started" can not be "ready" [#92196]
215+
216+
### Version 1.20
217+
218+
- Graduate `startupProbe` to GA [#94160]
192219

193220
[#71449]: https://github.com/kubernetes/kubernetes/pull/71449
194221
[#950]: https://github.com/kubernetes/enhancements/issues/950
195222
[proposal]: https://github.com/kubernetes/kubernetes/issues/27114#issuecomment-437208330
196223
[#77807]: https://github.com/kubernetes/kubernetes/pull/77807
197-
[#14297]: https://github.com/kubernetes/website/pull/14297
224+
[#82747]: https://github.com/kubernetes/kubernetes/issues/82747
225+
[#83437]: https://github.com/kubernetes/kubernetes/pull/83437
226+
[#83607]: https://github.com/kubernetes/kubernetes/pull/83607
227+
[#84279]: https://github.com/kubernetes/kubernetes/pull/84279
228+
[#84291]: https://github.com/kubernetes/kubernetes/pull/84291
229+
[#92196]: https://github.com/kubernetes/kubernetes/pull/92196
230+
[#92477]: https://github.com/kubernetes/kubernetes/pull/92477
231+
[#94160]: https://github.com/kubernetes/kubernetes/pull/94160

0 commit comments

Comments
 (0)