Files
navidrome-litefs/cleanup.nomad
sstent 41874f0ace
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 41s
feat: use internal wrapper for consul registration
2026-02-07 18:14:19 -08:00

25 lines
542 B
HCL

job "cleanup-litefs-all" {
datacenters = ["dc1"]
type = "batch"
group "cleanup" {
count = 4
constraint {
attribute = "${attr.unique.hostname}"
operator = "regexp"
value = "odroid6|odroid7|odroid8|opti1"
}
task "clean" {
driver = "docker"
config {
image = "busybox"
volumes = [
"/mnt/configs/navidrome_litefs:/mnt/data"
]
command = "sh"
args = ["-c", "rm -rf /mnt/data/* && echo \"Cleaned $(hostname)\""]
}
}
}
}