Add log lines
This commit is contained in:
		
							parent
							
								
									5488aeb247
								
							
						
					
					
						commit
						813377cdad
					
				| 
						 | 
					@ -337,6 +337,8 @@ func (r *EphemeralRunnerReconciler) Reconcile(ctx context.Context, req ctrl.Requ
 | 
				
			||||||
				return ctrl.Result{}, err
 | 
									return ctrl.Result{}, err
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								log.Info("Deleted the ephemeral runner that has a job assigned but the pod has failed")
 | 
				
			||||||
 | 
								log.Info("Trying to remove the runner from the service")
 | 
				
			||||||
			actionsClient, err := r.GetActionsService(ctx, ephemeralRunner)
 | 
								actionsClient, err := r.GetActionsService(ctx, ephemeralRunner)
 | 
				
			||||||
			if err != nil {
 | 
								if err != nil {
 | 
				
			||||||
				log.Error(err, "Failed to get actions client for checking the job status")
 | 
									log.Error(err, "Failed to get actions client for checking the job status")
 | 
				
			||||||
| 
						 | 
					@ -346,7 +348,7 @@ func (r *EphemeralRunnerReconciler) Reconcile(ctx context.Context, req ctrl.Requ
 | 
				
			||||||
				log.Error(err, "Failed to remove the runner from the service")
 | 
									log.Error(err, "Failed to remove the runner from the service")
 | 
				
			||||||
				return ctrl.Result{}, nil
 | 
									return ctrl.Result{}, nil
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
 | 
								log.Info("Removed the runner from the service")
 | 
				
			||||||
			return ctrl.Result{}, nil
 | 
								return ctrl.Result{}, nil
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		if err := r.deletePodAsFailed(ctx, ephemeralRunner, pod, log); err != nil {
 | 
							if err := r.deletePodAsFailed(ctx, ephemeralRunner, pod, log); err != nil {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue