From 0a908a347d087b64ce09d596d094719521beaf3d Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Wed, 11 Feb 2026 16:56:35 -0800 Subject: [PATCH] Mount host zoneinfo into runner for TZ support The forgejo/runner image doesn't ship tzdata, so the TZ env var alone has no effect. Mount the node's /usr/share/zoneinfo into the container. Co-Authored-By: Claude Opus 4.6 --- argocd/manifests/forgejo-runner/deployment.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/argocd/manifests/forgejo-runner/deployment.yaml b/argocd/manifests/forgejo-runner/deployment.yaml index 9720033..5977ce7 100644 --- a/argocd/manifests/forgejo-runner/deployment.yaml +++ b/argocd/manifests/forgejo-runner/deployment.yaml @@ -56,6 +56,9 @@ spec: mountPath: /data - name: config mountPath: /config + - name: zoneinfo + mountPath: /usr/share/zoneinfo + readOnly: true # Docker-in-Docker sidecar - name: dind @@ -77,3 +80,7 @@ spec: - name: config configMap: name: forgejo-runner-config + - name: zoneinfo + hostPath: + path: /usr/share/zoneinfo + type: Directory