Added job for file deletion everyday @kvz
This commit is contained in:
parent
d9d0f7c4e7
commit
3e054562ea
|
@ -113,3 +113,21 @@ spec:
|
||||||
minReplicas: 1
|
minReplicas: 1
|
||||||
maxReplicas: 5
|
maxReplicas: 5
|
||||||
targetCPUUtilizationPercentage: 90
|
targetCPUUtilizationPercentage: 90
|
||||||
|
---
|
||||||
|
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 \"rm -rf *\""]
|
||||||
|
restartPolicy: OnFailure
|
Loading…
Reference in New Issue