-
Notifications
You must be signed in to change notification settings - Fork 3
chore: streamline k8s job TTLs #1008
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -67,7 +67,7 @@ public function handle(Client $kubernetesClient): void { | |
| ], | ||
| ], | ||
| 'spec' => [ | ||
| 'ttlSecondsAfterFinished' => 14 * 24 * 60 * 60, // 2 weeks | ||
|
deer-wmde marked this conversation as resolved.
|
||
| 'ttlSecondsAfterFinished' => 24 * 60 * 60 * 7, // 1 week | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see no issue moving from 2 weeks to one week here. There is a small chance that this means we'll have all been away and are unable to inspect something here but that's probably the case with any length of time we pick |
||
| 'template' => [ | ||
| 'metadata' => [ | ||
| 'name' => 'run-qs-updater', | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -153,7 +153,7 @@ private function constructSpec(): array { | |
| ], | ||
| ], | ||
| 'spec' => [ | ||
| 'ttlSecondsAfterFinished' => 0, | ||
| 'ttlSecondsAfterFinished' => 24 * 60 * 60 * 7, // 1 week | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably does make sense to keep these around for a while |
||
| 'backoffLimit' => 0, | ||
| 'template' => [ | ||
| 'metadata' => [ | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.