An Azure service that provides customers with a serverless container experience.
Scott Gray hi,
this looks like ACI host/storage layer issue in that region, especially since same workload works in UK West and u are seeing low-level I O errors even on /etc/resolv.conf, thats not app level, thats underlying filesystem/overlay fs breaking.
PLS stop trusting that region for this workload, move to UK West or another region as primary, thats the fastest fix.
second avoid heavy git/pack operations on ACI ephemeral storage, use Azure Files or mounted volume for workspace instead of container overlay fs.
third reduce fsync pressure if possible (git can hammer disk hard), but tbh if host is flaky this wont fully save u.
fourth add retry logic on container runs (ACI sometimes lands u on bad host, next run may be fine).
fifth capture logs and open Azure support ticket with region + timestamps, this is backend issue they need to investigate
optional if this is critical workload consider moving to AKS or VM-based agents, ACI is not great for heavy IO workloads
rgds,
Alex