From 7d3f8e0856070bd7287261ed26b28292dd37ab23 Mon Sep 17 00:00:00 2001 From: Nikola Jokic Date: Fri, 12 Dec 2025 12:49:12 +0100 Subject: [PATCH] fix log message --- controllers/actions.github.com/ephemeralrunner_controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/actions.github.com/ephemeralrunner_controller.go b/controllers/actions.github.com/ephemeralrunner_controller.go index a608f6d1..40d25ad3 100644 --- a/controllers/actions.github.com/ephemeralrunner_controller.go +++ b/controllers/actions.github.com/ephemeralrunner_controller.go @@ -324,7 +324,7 @@ func (r *EphemeralRunnerReconciler) Reconcile(ctx context.Context, req ctrl.Requ return ctrl.Result{}, r.deleteEphemeralRunnerOrPod(ctx, ephemeralRunner, pod, log) case strings.HasPrefix(pod.Status.Reason, "OutOf"): // most likely a transient issue. - log.Info("Pod set the termination phase due to resource constraints, but container state is not terminated. Deleting ephemeral runner or pod", + log.Info("Pod failed with reason starting with OutOf. Deleting ephemeral runner or pod", "podPhase", pod.Status.Phase, "podReason", pod.Status.Reason, "podMessage", pod.Status.Message,