Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for reportingController (0.47 sec)

  1. pkg/apis/core/validation/events_test.go

    					APIVersion: "v1",
    					Kind:       "Node",
    				},
    				EventTime:           someTime,
    				ReportingController: "my-contr@ller",
    				ReportingInstance:   "node-xyz",
    				Action:              "Do",
    				Reason:              "Because",
    			},
    			valid: false,
    			msg:   "not qualified reportingController",
    		},
    		{
    			Event: &core.Event{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "test",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/events.go

    	allErrs = append(allErrs, ValidateImmutableField(newEvent.Related, oldEvent.Related, field.NewPath("related"))...)
    	allErrs = append(allErrs, ValidateImmutableField(newEvent.ReportingController, oldEvent.ReportingController, field.NewPath("reportingController"))...)
    	allErrs = append(allErrs, ValidateImmutableField(newEvent.ReportingInstance, oldEvent.ReportingInstance, field.NewPath("reportingInstance"))...)
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/events/v1beta1/types.go

    	Series *EventSeries `json:"series,omitempty" protobuf:"bytes,3,opt,name=series"`
    
    	// 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
    	ReportingController string `json:"reportingController,omitempty" protobuf:"bytes,4,opt,name=reportingController"`
    
    	// reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 03 11:06:50 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  4. pkg/apis/events/v1/zz_generated.conversion.go

    	out.ObjectMeta = in.ObjectMeta
    	out.EventTime = in.EventTime
    	out.Series = (*core.EventSeries)(unsafe.Pointer(in.Series))
    	out.ReportingController = in.ReportingController
    	out.ReportingInstance = in.ReportingInstance
    	out.Action = in.Action
    	out.Reason = in.Reason
    	// WARNING: in.Regarding requires manual conversion: does not exist in peer-type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  5. pkg/apis/events/v1beta1/zz_generated.conversion.go

    	out.ObjectMeta = in.ObjectMeta
    	out.EventTime = in.EventTime
    	out.Series = (*core.EventSeries)(unsafe.Pointer(in.Series))
    	out.ReportingController = in.ReportingController
    	out.ReportingInstance = in.ReportingInstance
    	out.Action = in.Action
    	out.Reason = in.Reason
    	// WARNING: in.Regarding requires manual conversion: does not exist in peer-type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/events/v1/types.go

    	// +optional
    	Series *EventSeries `json:"series,omitempty" protobuf:"bytes,3,opt,name=series"`
    
    	// reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
    	// This field cannot be empty for new Events.
    	ReportingController string `json:"reportingController,omitempty" protobuf:"bytes,4,opt,name=reportingController"`
    
    	// reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/events.k8s.io.v1.Event.json

            "subresource": "subresourceValue"
          }
        ]
      },
      "eventTime": "2002-01-01T01:01:01.000002Z",
      "series": {
        "count": 1,
        "lastObservedTime": "2002-01-01T01:01:01.000002Z"
      },
      "reportingController": "reportingControllerValue",
      "reportingInstance": "reportingInstanceValue",
      "action": "actionValue",
      "reason": "reasonValue",
      "regarding": {
        "kind": "kindValue",
        "namespace": "namespaceValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/events.k8s.io.v1beta1.Event.json

            "subresource": "subresourceValue"
          }
        ]
      },
      "eventTime": "2002-01-01T01:01:01.000002Z",
      "series": {
        "count": 1,
        "lastObservedTime": "2002-01-01T01:01:01.000002Z"
      },
      "reportingController": "reportingControllerValue",
      "reportingInstance": "reportingInstanceValue",
      "action": "actionValue",
      "reason": "reasonValue",
      "regarding": {
        "kind": "kindValue",
        "namespace": "namespaceValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. pkg/registry/core/event/storage/storage_test.go

    			Name:      "foo",
    			Namespace: namespace,
    		},
    		InvolvedObject: api.ObjectReference{
    			Name:      "bar",
    			Namespace: namespace,
    		},
    		EventTime:           someTime,
    		ReportingController: "test-controller",
    		ReportingInstance:   "test-node",
    		Action:              "Do",
    		Reason:              "forTesting",
    		Type:                "Normal",
    		Series: &api.EventSeries{
    			Count:            2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 14:50:28 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/events.k8s.io.v1.Event.yaml

      uid: uidValue
    related:
      apiVersion: apiVersionValue
      fieldPath: fieldPathValue
      kind: kindValue
      name: nameValue
      namespace: namespaceValue
      resourceVersion: resourceVersionValue
      uid: uidValue
    reportingController: reportingControllerValue
    reportingInstance: reportingInstanceValue
    series:
      count: 1
      lastObservedTime: "2002-01-01T01:01:01.000002Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top