Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for ObjectReference (0.35 sec)

  1. pkg/kubelet/runonce_test.go

    	volumeStatsAggPeriod := time.Second * 10
    	kb.resourceAnalyzer = stats.NewResourceAnalyzer(kb, volumeStatsAggPeriod, kb.recorder)
    	nodeRef := &v1.ObjectReference{
    		Kind:      "Node",
    		Name:      string(kb.nodeName),
    		UID:       types.UID(kb.nodeName),
    		Namespace: "",
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. pkg/controller/testutil/test_utils.go

    		f.Events = append(f.Events, event)
    	}
    }
    
    func (f *FakeRecorder) makeEvent(ref *v1.ObjectReference, eventtype, reason, message string) *v1.Event {
    	t := metav1.Time{Time: f.clock.Now()}
    	namespace := ref.Namespace
    	if namespace == "" {
    		namespace = metav1.NamespaceDefault
    	}
    
    	clientref := v1.ObjectReference{
    		Kind:            ref.Kind,
    		Namespace:       ref.Namespace,
    		Name:            ref.Name,
    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. staging/src/k8s.io/api/batch/v1beta1/generated.proto

    }
    
    // CronJobStatus represents the current state of a cron job.
    message CronJobStatus {
      // A list of pointers to currently running jobs.
      // +optional
      // +listType=atomic
      repeated .k8s.io.api.core.v1.ObjectReference active = 1;
    
      // Information when was the last time the job was successfully scheduled.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastScheduleTime = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. pkg/controller/volume/expand/expand_controller_test.go

    	pv := &v1.PersistentVolume{
    		ObjectMeta: metav1.ObjectMeta{Name: volumeName},
    		Spec: v1.PersistentVolumeSpec{
    			PersistentVolumeSource: v1.PersistentVolumeSource{},
    			ClaimRef: &v1.ObjectReference{
    				Namespace: "default",
    			},
    			Capacity: map[v1.ResourceName]resource.Quantity{
    				v1.ResourceStorage: resource.MustParse(size),
    			},
    		},
    	}
    	if pvcUID != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/batch/v1beta1/generated.proto

    }
    
    // CronJobStatus represents the current state of a cron job.
    message CronJobStatus {
      // A list of pointers to currently running jobs.
      // +optional
      // +listType=atomic
      repeated k8s.io.api.core.v1.ObjectReference active = 1;
    
      // Information when was the last time the job was successfully scheduled.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastScheduleTime = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. pkg/controller/endpoint/endpoints_controller.go

    // but excludes ResourceVersion of ObjectReference. They are used when comparing
    // endpoints in Endpoints and EndpointSlice objects to avoid unnecessary updates
    // caused by Pod resourceVersion change.
    var semanticIgnoreResourceVersion = conversion.EqualitiesOrDie(
    	func(a, b v1.ObjectReference) bool {
    		a.ResourceVersion = ""
    		b.ResourceVersion = ""
    		return a == b
    	},
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. pkg/proxy/util/utils.go

    	klog.ErrorS(nil, "Incorrect IP version", "service", klog.KRef(svcNamespace, svcName), "field", fieldName, "value", fieldValue)
    	if recorder != nil {
    		recorder.Eventf(
    			&v1.ObjectReference{
    				Kind:      "Service",
    				Name:      svcName,
    				Namespace: svcNamespace,
    				UID:       svcUID,
    			}, nil, v1.EventTypeWarning, "KubeProxyIncorrectIPVersion", "GatherEndpoints", errMsg)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    //     correctness and security.
    //
    // Note: this is only used by endpointslice controller
    func getPod(c *Controller, ip string, ep *metav1.ObjectMeta, targetRef *corev1.ObjectReference, host host.Name) (*corev1.Pod, bool) {
    	var expectPod bool
    	pod := c.getPod(ip, ep.Namespace, targetRef)
    	if targetRef != nil && targetRef.Kind == "Pod" {
    		expectPod = true
    		if pod == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. pkg/kubelet/images/image_gc_manager.go

    	statsProvider StatsProvider
    
    	// Recorder for Kubernetes events.
    	recorder record.EventRecorder
    
    	// Reference to this node.
    	nodeRef *v1.ObjectReference
    
    	// imageCache is the cache of latest image list.
    	imageCache imageCache
    
    	// tracer for recording spans
    	tracer trace.Tracer
    }
    
    // imageCache caches latest result of ListImages.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    	kubelet.startupManager = proberesults.NewManager()
    
    	fakeContainerManager := cm.NewFakeContainerManager()
    	kubelet.containerManager = fakeContainerManager
    	fakeNodeRef := &v1.ObjectReference{
    		Kind:      "Node",
    		Name:      testKubeletHostname,
    		UID:       types.UID(testKubeletHostname),
    		Namespace: "",
    	}
    
    	volumeStatsAggPeriod := time.Second * 10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top