Commit 83741d3
committed
docs(operator): separate the retry budget from the parking decision
CodeRabbit review on #402. The comments conflated two decisions the code
deliberately keeps apart: backoffLimit counts Failed pods, but exhausting
it only takes the Job terminal — the stage parks as erroring solely when a
retained attempt genuinely failed.
A Failed pod falls into one of three classes: an ignored disruption spends
nothing; an attempt the kubelet refused to admit spends an attempt without
being the package's failure; a genuine step failure or per-attempt timeout
spends an attempt and is. Only the third parks. Say so in the options
docstring, manager.yaml, values.yaml, and the design doc's backoffLimit
paragraph, which still claimed only genuine failures could count at all.
Signed-off-by: Alex Yuskauskas <ayuskauskas@nvidia.com>1 parent a31ccbe commit 83741d3
4 files changed
Lines changed: 13 additions & 8 deletions
File tree
- chart
- docs/designs
- operator
- config/manager
- internal/controller
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
90 | 90 | | |
91 | 91 | | |
92 | 92 | | |
93 | | - | |
94 | | - | |
95 | | - | |
96 | | - | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
97 | 98 | | |
98 | 99 | | |
99 | 100 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
110 | 110 | | |
111 | 111 | | |
112 | 112 | | |
113 | | - | |
| 113 | + | |
114 | 114 | | |
115 | 115 | | |
116 | 116 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
112 | 112 | | |
113 | 113 | | |
114 | 114 | | |
115 | | - | |
| 115 | + | |
| 116 | + | |
116 | 117 | | |
117 | 118 | | |
118 | 119 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
149 | 149 | | |
150 | 150 | | |
151 | 151 | | |
152 | | - | |
153 | | - | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
154 | 157 | | |
155 | 158 | | |
156 | 159 | | |
| |||
0 commit comments