Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for InitContainers (0.38 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		},
    	}
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "foo",
    			Namespace: "new",
    		},
    		Spec: v1.PodSpec{
    			Containers:     containers,
    			InitContainers: initContainers,
    		},
    	}
    
    	backOff := flowcontrol.NewBackOff(time.Second, time.Minute)
    
    	// 1. should only create the init container.
    	podStatus, err := m.GetPodStatus(ctx, pod.UID, pod.Name, pod.Namespace)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	for i := len(pod.Spec.InitContainers) - 1; i >= 0; i-- {
    		container := &pod.Spec.InitContainers[i]
    		status := podStatus.FindContainerStatusByName(container.Name)
    		if status != nil && isInitContainerFailed(status) {
    			return status, container, false
    		}
    	}
    
    	// There are no failed containers now.
    	for i := len(pod.Spec.InitContainers) - 1; i >= 0; i-- {
    		container := &pod.Spec.InitContainers[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/manager_test.go

    	regularInitCont1 := podWithPluginResourcesInRestartableInitContainers.Spec.InitContainers[0].Name
    	restartableInitCont2 := podWithPluginResourcesInRestartableInitContainers.Spec.InitContainers[1].Name
    	restartableInitCont3 := podWithPluginResourcesInRestartableInitContainers.Spec.InitContainers[2].Name
    	normalCont1 := podWithPluginResourcesInRestartableInitContainers.Spec.Containers[0].Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  4. pkg/test/kube/dump.go

    	for _, pod := range pods {
    		if coreDumpedPods.Load() >= maxCoreDumpedPods {
    			return
    		}
    		isVM := checkIfVM(pod)
    		wroteDumpsForPod := false
    		containers := append(pod.Spec.Containers, pod.Spec.InitContainers...)
    		for _, container := range containers {
    			if !proxyContainer.IsContainer(container) {
    				continue
    			}
    			restarts := containerRestarts(pod, proxyContainer.Name())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  5. pkg/controller/job/backoff_utils.go

    		// because with the sidecar (restartable init) containers,
    		// sidecar containers will always finish later than regular containers.
    		names := sets.New[string]()
    		for _, c := range p.Spec.InitContainers {
    			if c.RestartPolicy != nil && *c.RestartPolicy == v1.ContainerRestartPolicyAlways {
    				names.Insert(c.Name)
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/noderesources/fit.go

    // regular containers since they run simultaneously.
    //
    // # The resources defined for Overhead should be added to the calculated Resource request sum
    //
    // Example:
    //
    // Pod:
    //
    //	InitContainers
    //	  IC1:
    //	    CPU: 2
    //	    Memory: 1G
    //	  IC2:
    //	    CPU: 2
    //	    Memory: 3G
    //	Containers
    //	  C1:
    //	    CPU: 2
    //	    Memory: 1G
    //	  C2:
    //	    CPU: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    	case api.PodFailed:
    		row.Conditions = podFailedConditions
    	}
    
    	initContainers := make(map[string]*api.Container)
    	for i := range pod.Spec.InitContainers {
    		initContainers[pod.Spec.InitContainers[i].Name] = &pod.Spec.InitContainers[i]
    		if isRestartableInitContainer(&pod.Spec.InitContainers[i]) {
    			totalContainers++
    		}
    	}
    
    	initializing := false
    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. pkg/controller/job/backoff_utils_test.go

    		// sidecar containers will always finish later than regular containers.
    		"Pod with sidecar container and all containers terminated": {
    			pod: v1.Pod{
    				Spec: v1.PodSpec{
    					InitContainers: []v1.Container{
    						{
    							Name:          "sidecar",
    							RestartPolicy: &containerRestartPolicyAlways,
    						},
    					},
    				},
    				Status: v1.PodStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    					},
    				},
    			},
    		},
    		{
    			// Test pod has container statuses for non-existent initContainers and containers
    			api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "test4"},
    				Spec: api.PodSpec{
    					InitContainers: []api.Container{
    						{Name: "init1", Image: "initimage"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    		pod, podStatus,
    		oldPodStatus.ContainerStatuses,
    		pod.Spec.Containers,
    		len(pod.Spec.InitContainers) > 0,
    		false,
    	)
    	apiPodStatus.InitContainerStatuses = kl.convertToAPIContainerStatuses(
    		pod, podStatus,
    		oldPodStatus.InitContainerStatuses,
    		pod.Spec.InitContainers,
    		len(pod.Spec.InitContainers) > 0,
    		true,
    	)
    	var ecSpecs []v1.Container
    	for i := range pod.Spec.EphemeralContainers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top