k3s-cluster/cluster/apps/download/mylar3/cache-cronjob.yaml

33 lines
881 B
YAML
Raw Normal View History

2023-04-08 22:53:04 -04:00
apiVersion: batch/v1
kind: CronJob
metadata:
name: clear-mylar3-cache
namespace: download
spec:
# 4am every day
schedule: "0 4 * * *"
2023-04-08 22:57:57 -04:00
successfulJobsHistoryLimit: 1
failedJobsHistoryLimit: 2
2023-04-08 22:53:04 -04:00
jobTemplate:
spec:
template:
spec:
containers:
- name: clear-mylar3-cache
image: frolvlad/alpine-bash
imagePullPolicy: IfNotPresent
command:
- /bin/bash
- -c
- find /config/mylar/cache/* -maxdepth 1 ! -name "*.jpg" -delete
volumeMounts:
- name: mylar3-config
mountPath: /config
securityContext:
runAsNonRoot: true
runAsUser: 1000
restartPolicy: OnFailure
volumes:
- name: mylar3-config
hostPath:
path: /mnt/MainPool/Kubernetes/mylar3