-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve JobFailedEvent for DeadlineExceeded pods (#574)
* Improve JobFailedEvent for DeadlineExceeded pods Pods can set `activeDeadlineSeconds` to mark how long they should run, if they exceed this active duration then kubernetes will kill them and mark them as failed. Include a DeadlineExceeded cause in our JobFailedEvent Cause, so it is easy to identify when this happens programmatically * Add generated dotnet client code * Simplify comments * Simplify comments
- Loading branch information
1 parent
9545f0f
commit 8016092
Showing
7 changed files
with
168 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -241,7 +241,8 @@ | |
"enum": [ | ||
"Error", | ||
"Evicted", | ||
"OOM" | ||
"OOM", | ||
"DeadlineExceeded" | ||
] | ||
}, | ||
"apiContainerStatus": { | ||
|
Oops, something went wrong.