From a2248404cfe79712ed10b4c095ce8795de32d518 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Mon, 5 May 2025 09:17:14 -0500 Subject: [PATCH] podTemplate2: Pin to Buildah v1.37 for now Buildah 1.38 and 1.39 have a bug that prevents them being able to build containers in a Kubernetes pod. Whenever I try, I get: > error stat()ing intended root directory > "/var/tmp/buildah3537271510/mnt/rootfs": no such file or directory I have not identified the root cause yet, but reverting to 1.37 works around the issue for now. --- resources/podTemplate2.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/podTemplate2.yaml b/resources/podTemplate2.yaml index ce61637..070ee83 100644 --- a/resources/podTemplate2.yaml +++ b/resources/podTemplate2.yaml @@ -1,7 +1,7 @@ spec: containers: - name: buildah - image: quay.io/containers/buildah:v1 + image: quay.io/containers/buildah:v1.37 command: - cat stdin: true