Fix build trigger container image to use Alpine-based image
Some checks failed
Build and Push to Harbor / build-and-push (push) Has been cancelled

- 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 <noreply@anthropic.com>
This commit is contained in:
Neon Vortex
2025-11-22 22:02:01 -05:00
parent d919cbd263
commit e61dc3bd58

View File

@@ -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