Skip to content
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

Fix history limits in housekeeping cronjob #443

Merged
merged 2 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/netbox/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: netbox
version: 5.0.0-beta.161
version: 5.0.0-beta.162
appVersion: "v4.1.7"
type: application
kubeVersion: ^1.25.0-0
Expand Down
4 changes: 2 additions & 2 deletions charts/netbox/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1250,10 +1250,10 @@ housekeeping:
schedule: "0 0 * * *"
## @param housekeeping.historyLimit Number of successful finished jobs to retain
##
historyLimit: 5
successfulJobsHistoryLimit: 5
## @param housekeeping.failedHistoryLimit Number of failed finished jobs to retain
##
failedHistoryLimit: 5
failedJobsHistoryLimit: 5
## @param housekeeping.command The command to execute in the housekeeping job
## To append another command, e.g. in order to shut down a DB sidecar container, use something like
## - /bin/bash
Expand Down
Loading