Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isTerminal (0.18 sec)

  1. pkg/kubelet/pod_workers_test.go

    	isTerminal, err := s.fn(ctx, updateType, pod, mirrorPod, podStatus)
    	if err != nil {
    		return false, err
    	}
    	if !isTerminal {
    		s.lock.Lock()
    		defer s.lock.Unlock()
    		isTerminal = s.terminal.Has(string(pod.UID))
    	}
    	return isTerminal, nil
    }
    
    func (s *terminalPhaseSync) SetTerminal(uid types.UID) {
    	s.lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers.go

    			continue
    		}
    
    		podUID, podRef := podUIDAndRefForUpdate(update.Options)
    
    		klog.V(4).InfoS("Processing pod event", "pod", podRef, "podUID", podUID, "updateType", update.WorkType)
    		var isTerminal bool
    		err := func() error {
    			// The worker is responsible for ensuring the sync method sees the appropriate
    			// status updates on resyncs (the result of the last sync), transitions to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top