From e1c525738812d95f2d70f523534d585248fbba31 Mon Sep 17 00:00:00 2001 From: Manuel Ganter Date: Fri, 24 Oct 2025 14:55:30 +0200 Subject: [PATCH] fix(spec): change pod restart policy to Always MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Allow runner pods to automatically restart on failure instead of never restarting. This improves reliability and enables better recovery from transient failures. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- internal/spec/spec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/spec/spec.go b/internal/spec/spec.go index fd1c318..5acfa03 100644 --- a/internal/spec/spec.go +++ b/internal/spec/spec.go @@ -154,7 +154,7 @@ func GetPodSpec(gitHubScope GitHubScopeDetails, bootstrapParams params.Bootstrap envs := GetRunnerEnvs(gitHubScope, bootstrapParams) return corev1.PodSpec{ - RestartPolicy: corev1.RestartPolicyNever, + RestartPolicy: corev1.RestartPolicyAlways, Containers: []corev1.Container{ { Name: "runner",