26 lines
634 B
YAML
26 lines
634 B
YAML
---
|
|
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: ${job}
|
|
namespace: ${ns}
|
|
spec:
|
|
ttlSecondsAfterFinished: 3600
|
|
template:
|
|
spec:
|
|
automountServiceAccountToken: false
|
|
restartPolicy: OnFailure
|
|
containers:
|
|
- name: main
|
|
image: docker.io/library/alpine:latest
|
|
command: ["/bin/sh", "-c", "cd /config; find . -delete"]
|
|
volumeMounts:
|
|
- name: config
|
|
mountPath: /config
|
|
securityContext:
|
|
privileged: true
|
|
resources: {}
|
|
volumes:
|
|
- name: config
|
|
persistentVolumeClaim:
|
|
claimName: ${claim}
|