fix: remove host volume requirement until autobox is configured
All checks were successful
Build and Deploy iLSP / test (push) Successful in 18s
Build and Deploy iLSP / build-and-deploy (push) Successful in 49s

Volume can be added back once ilsp-data is registered in nomad.hcl.
Baked-in catalog (27 modules) is sufficient for initial deploy.
This commit is contained in:
Henrik Jess Nielsen
2026-05-10 14:20:31 +02:00
parent 0527df717c
commit 83817229e0

View File

@@ -62,12 +62,6 @@ job "ilsp" {
unlimited = false unlimited = false
} }
volume "ilsp-data" {
type = "host"
source = "ilsp-data"
read_only = false
}
# Health check only — Traefik not used for LSP TCP traffic # Health check only — Traefik not used for LSP TCP traffic
service { service {
provider = "consul" provider = "consul"
@@ -133,12 +127,6 @@ EOH
memory = 1536 # MB — dotnet needs headroom memory = 1536 # MB — dotnet needs headroom
memory_max = 2560 # MB burst memory_max = 2560 # MB burst
} }
volume_mount {
volume = "ilsp-data"
destination = "/data"
read_only = false
}
} }
} }
} }