From 91fe79de193394d78bcaa12c9bd25db5102deed3 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sun, 22 Feb 2026 17:35:04 +0000 Subject: [PATCH] [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. --- stacks/drone/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stacks/drone/main.tf b/stacks/drone/main.tf index 471553a2..522a0d15 100644 --- a/stacks/drone/main.tf +++ b/stacks/drone/main.tf @@ -322,7 +322,7 @@ resource "kubernetes_deployment" "drone_runner" { value = "true" } env { - name = "DRONE_IMAGES_CLONE" + name = "DRONE_IMAGE_CLONE" value = "alpine/git:latest" } }