Skip to content
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/nextcloud/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: nextcloud
version: 8.6.1
version: 8.7.0
# renovate: image=docker.io/library/nextcloud
appVersion: 32.0.3
description: A file sharing server that puts the control and security of your own data back into your hands.
Expand Down
1 change: 1 addition & 0 deletions charts/nextcloud/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ The following table lists the configurable parameters of the nextcloud chart and
| `cronjob.cronjob.podLabels` | An array of service labels | `nil` |
| `cronjob.cronjob.annotations` | An array of service annotations | `nil` |
| `cronjob.cronjob.backoffLimit` | The number of retries before marking a job as failed | `1` |
| `cronjob.cronjob.activeDeadlineSeconds` | The number of seconds before cancelling a job | `nil` |
| `cronjob.cronjob.affinity` | The affinity settings for the cron job | `{}` |
| `cronjob.cronjob.resources` | The resource requests/limits for the cron job | `{}` |
| `cronjob.cronjob.priorityClassName` | Priority Class for cronjob. Defaults to .priorityClassName | `nil` |
Expand Down
3 changes: 3 additions & 0 deletions charts/nextcloud/templates/cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ spec:
{{- end }}
spec:
backoffLimit: {{ .backoffLimit }}
{{- with .activeDeadlineSeconds }}
activeDeadlineSeconds: {{ . }}
{{- end }}
template:
metadata:
labels:
Expand Down
1 change: 1 addition & 0 deletions charts/nextcloud/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,7 @@ cronjob:
schedule: "*/5 * * * *"
successfulJobsHistoryLimit: 3
failedJobsHistoryLimit: 5
activeDeadlineSeconds:
# -- Additional labels for cronjob
labels: {}
# -- Additional labels for cronjob pod
Expand Down
Loading