From 422ae3cf0447d87b362bf4028b8d9a46ce1292fa Mon Sep 17 00:00:00 2001 From: poimen Date: Fri, 28 Aug 2026 15:41:23 -0700 Subject: [PATCH] fix: update runner golang image from 1.25 to 1.26 kmsvc-manage, kmsvc-cli require Go 1.26.0 in go.mod but runner was using golang:1.25-bookworm container. Update to golang:1.26-bookworm to match project requirements. --- k8s/infra/forgejo-runner/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/infra/forgejo-runner/values.yaml b/k8s/infra/forgejo-runner/values.yaml index 38dda1e..8c73d60 100644 --- a/k8s/infra/forgejo-runner/values.yaml +++ b/k8s/infra/forgejo-runner/values.yaml @@ -9,7 +9,7 @@ runner: # instance carries the golang toolchain and its own dind sidecar builds and # pushes that repo's images too -- there is no separate generic runner # anymore. - labels: "golang:docker://golang:1.25-bookworm" + labels: "golang:docker://golang:1.26-bookworm" # In-cluster Service (:3000) — direct, avoids the ingress/public-hostname hop # (the public URL is :443 which forgejo doesn't serve; runner got i/o timeout). forgejoUrl: http://forgejo-gitea-http.cicd.svc.cluster.local:3000