mirror of
https://gitlab.com/shouptech/flux.git
synced 2026-02-03 17:09:45 +00:00
22 lines
454 B
YAML
22 lines
454 B
YAML
apiVersion: batch/v1beta1
|
|
kind: CronJob
|
|
metadata:
|
|
name: nextcloudcron
|
|
namespace: nextcloud
|
|
spec:
|
|
schedule: "*/5 * * * *"
|
|
jobTemplate:
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: busybox
|
|
image: busybox
|
|
command:
|
|
- "wget"
|
|
- "http://nextcloud/cron.php"
|
|
- "-o"
|
|
- "/dev/null"
|
|
- "-O"
|
|
- "-"
|
|
restartPolicy: Never
|