From 9364b68f66c233f1a93deb37da265b6ea0a7705f Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Sat, 22 Aug 2026 06:09:15 -0700 Subject: [PATCH] fix(deploy): use apt-get for Debian golang:latest image golang:latest is Debian-based, not Alpine. Replace apk package manager commands with apt-get for both orchestrator and worker deployments. --- k8s/orchestrator-job.yaml | 2 +- k8s/worker-deployment.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/k8s/orchestrator-job.yaml b/k8s/orchestrator-job.yaml index e331a46..ce2c713 100644 --- a/k8s/orchestrator-job.yaml +++ b/k8s/orchestrator-job.yaml @@ -18,7 +18,7 @@ spec: command: ["/bin/sh", "-c"] args: - | - apk add --no-cache git + apt-get update && apt-get install -y --no-install-recommends git git clone https://forgejo.riotpiao.com/rock/poimen-workflows.git /app cd /app go mod download diff --git a/k8s/worker-deployment.yaml b/k8s/worker-deployment.yaml index dd10e72..bb0ffa4 100644 --- a/k8s/worker-deployment.yaml +++ b/k8s/worker-deployment.yaml @@ -20,7 +20,7 @@ spec: command: ["/bin/sh", "-c"] args: - | - apk add --no-cache git + apt-get update && apt-get install -y --no-install-recommends git git clone https://forgejo.riotpiao.com/rock/poimen-workflows.git /app cd /app go mod download