Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 180 for newpod (0.15 sec)

  1. pkg/controller/job/tracking_utils_test.go

    	}
    }
    
    func TestRecordFinishedPodWithTrackingFinalizer(t *testing.T) {
    	metrics.Register()
    	cases := map[string]struct {
    		oldPod     *v1.Pod
    		newPod     *v1.Pod
    		wantAdd    int
    		wantDelete int
    	}{
    		"new non-finished Pod with finalizer": {
    			newPod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Finalizers: []string{batch.JobTrackingFinalizer},
    				},
    				Status: v1.PodStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 05:40:02 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/helpers_test.go

    func TestOrderedByPriorityProcess(t *testing.T) {
    	pod1 := newPod("low-priority-high-usage", lowPriority, nil, nil)
    	pod2 := newPod("low-priority-low-usage", lowPriority, nil, nil)
    	pod3 := newPod("high-priority-high-usage", highPriority, nil, nil)
    	pod4 := newPod("high-priority-low-usage", highPriority, nil, nil)
    	stats := map[*v1.Pod]statsapi.PodStats{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  3. pkg/volume/util/recyclerclient/recycler_client_test.go

    		Type:   eventtype,
    		Object: newPod(name, phase, message),
    	}
    }
    
    func newEvent(eventtype, message string) watch.Event {
    	return watch.Event{
    		Type: watch.Added,
    		Object: &v1.Event{
    			ObjectMeta: metav1.ObjectMeta{
    				Namespace: metav1.NamespaceDefault,
    			},
    			Reason:  "MockEvent",
    			Message: message,
    			Type:    eventtype,
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  4. plugin/pkg/admission/namespace/exists/admission_test.go

    					Name:            ns,
    					ResourceVersion: fmt.Sprintf("%d", i),
    				},
    			})
    		}
    		return true, namespaceList, nil
    	})
    	return mockClient
    }
    
    // newPod returns a new pod for the specified namespace
    func newPod(namespace string) api.Pod {
    	return api.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "123", Namespace: namespace},
    		Spec: api.PodSpec{
    			Volumes:    []api.Volume{{Name: "vol"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/conversion_test.go

    					&example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "newpod"}},
    					&example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "oldpod"}},
    				),
    				// name gets overwritten from converted attributes, type gets set explicitly
    				VersionedObject:    &examplev1.Pod{TypeMeta: metav1.TypeMeta{APIVersion: "example.apiserver.k8s.io/v1", Kind: "Pod"}, ObjectMeta: metav1.ObjectMeta{Name: "newpod"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller_test.go

    			wantedPods: []*v1.Pod{
    				newPod("matching-owned-0-", "node-0", simpleDaemonSetLabel, ds),
    				newPod("matching-orphan-0-", "node-0", simpleDaemonSetLabel, nil),
    				newPod("matching-owned-1-", "node-1", simpleDaemonSetLabel, ds),
    				newPod("matching-orphan-1-", "node-1", simpleDaemonSetLabel, nil),
    				func() *v1.Pod {
    					pod := newPod("matching-owned-succeeded-pod-0-", "node-0", simpleDaemonSetLabel, ds)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  7. pkg/controller/daemon/update.go

    				numUnavailable++
    				continue
    			}
    			switch {
    			case oldPod == nil && newPod == nil, oldPod != nil && newPod != nil:
    				// the manage loop will handle creating or deleting the appropriate pod, consider this unavailable
    				numUnavailable++
    			case newPod != nil:
    				// this pod is up to date, check its availability
    				if !podutil.IsPodAvailable(newPod, ds.Spec.MinReadySeconds, metav1.Time{Time: now}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  8. pkg/controller/tainteviction/taint_eviction.go

    		nodeName = newPod.Spec.NodeName
    		newTolerations = newPod.Spec.Tolerations
    	}
    
    	if oldPod != nil && newPod != nil && helper.Semantic.DeepEqual(oldTolerations, newTolerations) && oldPod.Spec.NodeName == newPod.Spec.NodeName {
    		return
    	}
    	updateItem := podUpdateItem{
    		podName:      podName,
    		podNamespace: podNamespace,
    		nodeName:     nodeName,
    	}
    
    	tc.podUpdateQueue.Add(updateItem)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. pkg/quota/v1/install/update_filter.go

    		switch resource.GroupResource() {
    		case schema.GroupResource{Resource: "pods"}:
    			oldPod := oldObj.(*v1.Pod)
    			newPod := newObj.(*v1.Pod)
    			return core.QuotaV1Pod(oldPod, clock.RealClock{}) && !core.QuotaV1Pod(newPod, clock.RealClock{})
    		case schema.GroupResource{Resource: "services"}:
    			oldService := oldObj.(*v1.Service)
    			newService := newObj.(*v1.Service)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 08 22:39:55 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. pkg/controller/disruption/disruption_test.go

    		"notthere": {Time: currentTime},                       // Should be removed, pod deleted.
    	}
    	add(t, dc.pdbStore, pdb)
    
    	pod1, _ := newPod(t, "p1")
    	pod1.DeletionTimestamp = &metav1.Time{Time: dc.clock.Now()}
    	pod2, _ := newPod(t, "p2")
    	pod3, _ := newPod(t, "p3")
    
    	add(t, dc.podStore, pod1)
    	add(t, dc.podStore, pod2)
    	add(t, dc.podStore, pod3)
    
    	dc.sync(ctx, pdbName)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top