[ci skip] Fix Drone clone image: use alpine/git via DRONE_IMAGE_CLONE

The drone/git:latest image was failing to pull through the registry
cache (corrupted blobs, unexpected EOF). Set DRONE_IMAGE_CLONE on the
Kubernetes runner to use alpine/git:latest globally for all pipelines.
This commit is contained in:
Viktor Barzin 2026-02-22 17:35:04 +00:00
parent 5501b5cfbf
commit 35488f4ef6

View file

@ -322,7 +322,7 @@ resource "kubernetes_deployment" "drone_runner" {
value = "true" value = "true"
} }
env { env {
name = "DRONE_IMAGES_CLONE" name = "DRONE_IMAGE_CLONE"
value = "alpine/git:latest" value = "alpine/git:latest"
} }
} }