29 lines
687 B
YAML
29 lines
687 B
YAML
---
|
|
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: "${jobName}"
|
|
namespace: "default"
|
|
spec:
|
|
ttlSecondsAfterFinished: 3600
|
|
template:
|
|
spec:
|
|
automountServiceAccountToken: false
|
|
restartPolicy: Never
|
|
nodeName: ${node}
|
|
containers:
|
|
- name: disk-wipe
|
|
image: docker.io/library/alpine:3.20.0
|
|
securityContext:
|
|
privileged: true
|
|
resources: {}
|
|
command: ["/bin/sh", "-c"]
|
|
args:
|
|
- rm -rf /mnt/host_var/lib/rook
|
|
volumeMounts:
|
|
- mountPath: /mnt/host_var
|
|
name: host-var
|
|
volumes:
|
|
- name: host-var
|
|
hostPath:
|
|
path: /var
|