fix: use alpine/git for init container instead of bitnami/git

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-21 07:58:46 -04:00
parent fd2a941dd8
commit ef79ca2e9a
+1 -1
View File
@@ -71,7 +71,7 @@ export function buildJobSpec(params: JobParams): k8s.V1Job {
initContainers.push({
name: 'git-clone',
image: 'bitnami/git:2',
image: 'alpine/git:latest',
command: ['git'],
args: cloneArgs,
volumeMounts: [{ name: 'repo', mountPath: REPO_MOUNT_PATH }],