Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AnnotatedEventf (0.16 sec)

  1. pkg/kubelet/container/helpers.go

    	}
    
    }
    
    func (irecorder *innerEventRecorder) AnnotatedEventf(object runtime.Object, annotations map[string]string, eventtype, reason, messageFmt string, args ...interface{}) {
    	if ref, ok := irecorder.shouldRecordEvent(object); ok {
    		irecorder.recorder.AnnotatedEventf(ref, annotations, eventtype, reason, messageFmt, args...)
    	}
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. pkg/controller/testutil/test_utils.go

    	f.Event(obj, eventtype, reason, fmt.Sprintf(messageFmt, args...))
    }
    
    // AnnotatedEventf emits a fake formatted event to the fake recorder
    func (f *FakeRecorder) AnnotatedEventf(obj runtime.Object, annotations map[string]string, eventtype, reason, messageFmt string, args ...interface{}) {
    	f.Eventf(obj, eventtype, reason, messageFmt, args...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/eviction_manager.go

    	if kubelettypes.IsCriticalPod(pod) {
    		klog.ErrorS(nil, "Eviction manager: cannot evict a critical pod", "pod", klog.KObj(pod))
    		return false
    	}
    	// record that we are evicting the pod
    	m.recorder.AnnotatedEventf(pod, annotations, v1.EventTypeWarning, Reason, evictMsg)
    	// this is a blocking call and should only return when the pod and its containers are killed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    func (r *noopRecorder) Event(object runtime.Object, eventtype, reason, message string) {}
    func (r *noopRecorder) Eventf(object runtime.Object, eventtype, reason, messageFmt string, args ...interface{}) {
    }
    func (r *noopRecorder) AnnotatedEventf(object runtime.Object, annotations map[string]string, eventtype, reason, messageFmt string, args ...interface{}) {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
Back to top