Fixed deletion script @Acconut

This commit is contained in:
Abdelhadi Khiati 2018-06-11 21:25:10 +01:00
parent 3e054562ea
commit 2a20201dba
1 changed files with 1 additions and 1 deletions

View File

@ -129,5 +129,5 @@ spec:
- 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 \"rm -rf *\""]
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