add nextcloud

This commit is contained in:
2025-05-08 19:36:36 -04:00
parent 751b3bea46
commit e5a76f34e3
10 changed files with 294 additions and 0 deletions

19
nextcloud/cron.yaml Normal file
View File

@@ -0,0 +1,19 @@
apiVersion: batch/v1
kind: CronJob
metadata:
name: nextcloud-cron
spec:
schedule: "*/5 * * * *"
jobTemplate:
spec:
template:
spec:
containers:
- name: nextcloud
image: nextcloud:28.0.3-apache
imagePullPolicy: IfNotPresent
command:
- /bin/sh
- -c
- curl https://nextcloud.dubyatp.xyz/cron.php
restartPolicy: OnFailure