From e61dc3bd58cc9cae6d731ee8b38987cc385af7c8 Mon Sep 17 00:00:00 2001 From: Neon Vortex Date: Sat, 22 Nov 2025 22:02:01 -0500 Subject: [PATCH] Fix build trigger container image to use Alpine-based image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Switch from bitnami/kubectl to alpine/k8s for proper package manager - Add curl to dependencies for potential future webhook support 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- build-trigger-cronjob.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-trigger-cronjob.yaml b/build-trigger-cronjob.yaml index 053fd39..0d1fd4b 100644 --- a/build-trigger-cronjob.yaml +++ b/build-trigger-cronjob.yaml @@ -139,12 +139,12 @@ spec: restartPolicy: Never containers: - name: trigger - image: bitnami/kubectl:latest + image: alpine/k8s:1.28.13 command: ["/bin/bash"] args: - -c - | - apk add --no-cache git bash + apk add --no-cache git bash curl /scripts/trigger-build.sh volumeMounts: - name: script