Remove cleaning job

This commit is contained in:
Abdelhadi Khiati 2018-07-11 00:25:14 +01:00
parent c5f39a3205
commit 284ee974bc
1 changed files with 0 additions and 18 deletions

View File

@ -127,21 +127,3 @@ spec:
resource:
name: memory
targetAverageValue: 1800Mi
---
apiVersion: batch/v1beta1
kind: CronJob
metadata:
name: cleaning-job
namespace: tus
spec:
schedule: "* * */1 * *"
jobTemplate:
spec:
template:
spec:
containers:
- name: jobspod
image: gcr.io/transloadit-kubes/jobspod
command: ["/bin/bash", "-c"]
args: [ "kubectl exec --namespace tus $(kubectl get pods --namespace tus -l app=tusd -o go-template --template '{{range .items}}{{.metadata.name}}{{\"\\n\"}}{{end}}') -- /bin/sh -c \"find . -type f -mmin +1440 -print0 | xargs -n 200 -r -0 rm || true\""]
restartPolicy: OnFailure