Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 180 for newpod (0.12 sec)

  1. pkg/controller/controller_utils_test.go

    	pods := []v1.Pod{}
    	for i := 0; i < count; i++ {
    		newPod := v1.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      fmt.Sprintf("pod%d", i),
    				Labels:    rc.Spec.Selector,
    				Namespace: rc.Namespace,
    			},
    			Status: v1.PodStatus{Phase: status},
    		}
    		if store != nil {
    			store.Add(&newPod)
    		}
    		pods = append(pods, newPod)
    	}
    	return &v1.PodList{
    		Items: pods,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. pkg/scheduler/eventhandlers.go

    	}
    	if isAssumed {
    		return
    	}
    
    	logger.V(4).Info("Update event for unscheduled pod", "pod", klog.KObj(newPod))
    	if err := sched.SchedulingQueue.Update(logger, oldPod, newPod); err != nil {
    		utilruntime.HandleError(fmt.Errorf("unable to update %T: %v", newObj, err))
    	}
    }
    
    func (sched *Scheduler) deletePodFromSchedulingQueue(obj interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/strategy_test.go

    			newPod := tc.newPod
    
    			Strategy.PrepareForCreate(genericapirequest.NewContext(), newPod)
    			if errs := Strategy.Validate(genericapirequest.NewContext(), newPod); len(errs) != 0 {
    				t.Errorf("Unexpected error: %v", errs.ToAggregate())
    			}
    
    			if diff := cmp.Diff(getLifecycle(newPod), getLifecycle(tc.wantPod)); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceregistry_test.go

    				newPod := pod.DeepCopy()
    				newPod.Status.PodIP = "2.3.4.5"
    				makePod(t, s.KubeClient().Kube(), newPod)
    				expectEndpoints(t, s, "outbound|80||service.namespace.svc.cluster.local", expectAmbient([]string{"2.3.4.5:80"}, ambient), nodeMeta)
    
    				if err := s.KubeClient().Kube().CoreV1().Pods(newPod.Namespace).Delete(context.Background(), newPod.Name, metav1.DeleteOptions{}); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    				},
    				Status: v1.NamespaceStatus{
    					Phase: phase,
    				},
    			})
    			index++
    		}
    		return true, namespaceList, nil
    	})
    	return mockClient
    }
    
    // newPod returns a new pod for the specified namespace
    func newPod(namespace string) v1.Pod {
    	return v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "123", Namespace: namespace},
    		Spec: v1.PodSpec{
    			Volumes:    []v1.Volume{{Name: "vol"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. pkg/controller/daemon/update_test.go

    				return ds
    			}(),
    			nodeToPods: func() map[string][]*v1.Pod {
    				mapping := make(map[string][]*v1.Pod)
    				pod0 := newPod("pod-0", "node-0", simpleDaemonSetLabel, nil)
    				pod1 := newPod("pod-1", "node-1", simpleDaemonSetLabel, nil)
    				markPodReady(pod0)
    				markPodReady(pod1)
    				mapping["node-0"] = []*v1.Pod{pod0}
    				mapping["node-1"] = []*v1.Pod{pod1}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. pkg/kubelet/pod/pod_manager.go

    	var numEC int
    	if oldPod != nil {
    		numEC -= len(oldPod.Spec.EphemeralContainers)
    	}
    	if newPod != nil {
    		numEC += len(newPod.Spec.EphemeralContainers)
    	}
    	if numEC != 0 {
    		metrics.ManagedEphemeralContainers.Add(float64(numEC))
    	}
    }
    
    // updatePodsInternal replaces the given pods in the current state of the
    // manager, updating the various indices. The caller is assumed to hold the
    // lock.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	generatedVolumeName, podAddErr := dsw.AddPod(types.UniquePodName(podName1), controllervolumetesting.NewPod(podName1, podName1), volumeSpec, nodeName1)
    	if podAddErr != nil {
    		t.Fatalf("AddPod failed. Expected: <no error> Actual: <%v>", podAddErr)
    	}
    
    	_, podAddErr = dsw.AddPod(types.UniquePodName(podName2), controllervolumetesting.NewPod(podName2, podName2), volumeSpec, nodeName2)
    	if podAddErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_testing_utils_test.go

    	metav1.AddToGroupVersion(scheme, metav1.SchemeGroupVersion)
    	utilruntime.Must(example.AddToScheme(scheme))
    	utilruntime.Must(examplev1.AddToScheme(scheme))
    	utilruntime.Must(example2v1.AddToScheme(scheme))
    }
    
    func newPod() runtime.Object     { return &example.Pod{} }
    func newPodList() runtime.Object { return &example.PodList{} }
    
    func newEtcdTestStorage(t *testing.T, prefix string) (*etcd3testing.EtcdTestServer, storage.Interface) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 20:43:52 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. pkg/controller/job/tracking_utils.go

    		if fin == batch.JobTrackingFinalizer {
    			return true
    		}
    	}
    	return false
    }
    
    func recordFinishedPodWithTrackingFinalizer(oldPod, newPod *v1.Pod) {
    	was := isFinishedPodWithTrackingFinalizer(oldPod)
    	is := isFinishedPodWithTrackingFinalizer(newPod)
    	if was == is {
    		return
    	}
    	var event = metrics.Delete
    	if is {
    		event = metrics.Add
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 05:40:02 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top