Skip to content
Open
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: 9.2.6
version: 9.3.0
# renovate: image=docker.io/library/nextcloud
appVersion: 34.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 @@ -216,6 +216,7 @@ The following table lists the configurable parameters of the nextcloud chart and
| `cronjob.sidecar.resources` | CPU/Memory resource requests/limits for the cron jobs sidecar | `{}` |
| `cronjob.sidecar.securityContext` | Optional security context for cron jobs sidecar | `nil` |
| `cronjob.cronjob.schedule` | Cron job schedule | `*/5 * * * *` |
| `cronjob.cronjob.suspend` | Suspend the cron job without removing it | `false` |
| `cronjob.cronjob.successfulJobsHistoryLimit` | Number of successful jobs to keep in history | `3` |
| `cronjob.cronjob.failedJobsHistoryLimit` | Number of failed jobs to keep in history | `5` |
| `cronjob.cronjob.labels` | An array of service labels | `nil` |
Expand Down
1 change: 1 addition & 0 deletions charts/nextcloud/templates/cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ metadata:
{{- end }}
spec:
schedule: {{ .schedule | quote }}
suspend: {{ .suspend }}
concurrencyPolicy: Forbid
successfulJobsHistoryLimit: {{ .successfulJobsHistoryLimit }}
failedJobsHistoryLimit: {{ .failedJobsHistoryLimit }}
Expand Down
2 changes: 2 additions & 0 deletions charts/nextcloud/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -709,6 +709,8 @@ cronjob:
# crond does not work when not running as root user
# Note: requires `persistence.enabled=true`
schedule: "*/5 * * * *"
# Suspend the cron job without removing it
suspend: false
successfulJobsHistoryLimit: 3
failedJobsHistoryLimit: 5
activeDeadlineSeconds:
Expand Down