-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a job TTL such that they don't hang around forever (#75)
* Fix comment line location - it somehow got into the wrong spot. * Add a job TTL such that they don't hang around forever After a job completes, the pod does not need to stay on the cluster as a "completed" pod forever. It just takes up kubernetes state space when it has long since completed. Keeping it around for a while after completing allows for inspection but once that time has been reached, it should evaporate and no longer take up state space. (Jobs don't restart once completed so they are not very useful and in larger clusters the state space becomes a bottleneck)
- Loading branch information
1 parent
cec463a
commit c83db48
Showing
4 changed files
with
9 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
apiVersion: v1 | ||
description: A Helm chart for the Kamino vmss-prototype pattern image generator | ||
name: vmss-prototype | ||
version: 0.0.12 | ||
version: 0.0.13 | ||
maintainers: | ||
- name: Michael Sinz | ||
email: [email protected] | ||
|
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