Files
navidrome-litefs/mnt-configs-check.nomad
sstent dd413d1342
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 41s
fix(cluster): use new litefs key and local volume, exclude odroid7
2026-04-27 10:15:49 -07:00

19 lines
299 B
HCL

job "mnt-configs-check" {
datacenters = ["dc1"]
type = "batch"
group "check" {
count = 4
constraint {
distinct_hosts = true
}
task "df" {
driver = "raw_exec"
config {
command = "df"
args = ["-h", "/mnt/configs"]
}
}
}
}