Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for reportingController (4.52 sec)

  1. common-protos/k8s.io/api/events/v1beta1/generated.proto

      // +optional
      optional EventSeries series = 3;
    
      // reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
      // This field cannot be empty for new Events.
      // +optional
      optional string reportingController = 4;
    
      // reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/events/v1beta1/generated.proto

      // +optional
      optional EventSeries series = 3;
    
      // reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
      // This field cannot be empty for new Events.
      // +optional
      optional string reportingController = 4;
    
      // reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/events/v1/generated.proto

      // +optional
      optional EventSeries series = 3;
    
      // reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
      // This field cannot be empty for new Events.
      optional string reportingController = 4;
    
      // reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/events/v1/generated.proto

      // +optional
      optional EventSeries series = 3;
    
      // reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
      // This field cannot be empty for new Events.
      optional string reportingController = 4;
    
      // reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/events/v1/generated.pb.go

    	copy(dAtA[i:], m.ReportingInstance)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.ReportingInstance)))
    	i--
    	dAtA[i] = 0x2a
    	i -= len(m.ReportingController)
    	copy(dAtA[i:], m.ReportingController)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.ReportingController)))
    	i--
    	dAtA[i] = 0x22
    	if m.Series != nil {
    		{
    			size, err := m.Series.MarshalToSizedBuffer(dAtA[:i])
    			if err != nil {
    				return 0, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  6. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/api/core/v1,ContainerStatus,LastTerminationState
    API rule violation: names_match,k8s.io/api/core/v1,DaemonEndpoint,Port
    API rule violation: names_match,k8s.io/api/core/v1,Event,ReportingController
    API rule violation: names_match,k8s.io/api/core/v1,FCVolumeSource,WWIDs
    API rule violation: names_match,k8s.io/api/core/v1,GlusterfsPersistentVolumeSource,EndpointsName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    // It uses reportingController when Source.Component is empty and reportingInstance when Source.Host is empty
    func formatEventSource(es api.EventSource, reportingController, reportingInstance string) string {
    	return formatEventSourceComponentInstance(
    		firstNonEmpty(es.Component, reportingController),
    		firstNonEmpty(es.Host, reportingInstance),
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

                "description": "related is the optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object."
              },
              "reportingController": {
                "description": "reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. This field cannot be empty for new Events.",
                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/zz_generated.conversion.go

    	out.EventTime = in.EventTime
    	out.Series = (*core.EventSeries)(unsafe.Pointer(in.Series))
    	out.Action = in.Action
    	out.Related = (*core.ObjectReference)(unsafe.Pointer(in.Related))
    	out.ReportingController = in.ReportingController
    	out.ReportingInstance = in.ReportingInstance
    	return nil
    }
    
    // Convert_v1_Event_To_core_Event is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one_test.go

    	stopFn, err := broadcaster.StartEventWatcher(func(obj runtime.Object) {
    		e, ok := obj.(*eventsv1.Event)
    		if !ok || e.Reason != "Scheduled" {
    			return
    		}
    		controllers[e.Regarding.Name] = e.ReportingController
    		wg.Done()
    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer stopFn()
    
    	// Run scheduler.
    	informerFactory.Start(ctx.Done())
    	informerFactory.WaitForCacheSync(ctx.Done())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top