Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for InitContainer (0.15 sec)

  1. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    				}
    			}
    
    			// Calls AddContainer for init containers
    			for i, initContainer := range testCase.podAllocate.Spec.InitContainers {
    				mgr.AddContainer(testCase.podAllocate, &testCase.podAllocate.Spec.InitContainers[i], initContainer.Name)
    			}
    
    			// Calls AddContainer for apps containers
    			for i, appContainer := range testCase.podAllocate.Spec.Containers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		// Step 6: start the init container.
    		if container := podContainerChanges.NextInitContainerToStart; container != nil {
    			// Start the next init container.
    			if err := start(ctx, "init container", metrics.InitContainer, containerStartSpec(container)); err != nil {
    				return
    			}
    
    			// Successfully started the container; clear the entry in the failure
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. pkg/apis/batch/validation/validation.go

    	}
    	if onExitCode.ContainerName != nil && !containerNames.Has(*onExitCode.ContainerName) {
    		allErrs = append(allErrs, field.Invalid(onExitCodesPath.Child("containerName"), *onExitCode.ContainerName, "must be one of the container or initContainer names in the pod template"))
    	}
    	valuesPath := onExitCodesPath.Child("values")
    	if len(onExitCode.Values) == 0 {
    		allErrs = append(allErrs, field.Invalid(valuesPath, onExitCode.Values, "at least one value is required"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - Kube-apiserver: fixes a 1.28 regression printing pods with invalid initContainer status ([#124906](https://github.com/kubernetes/kubernetes/pull/124906), [@liggitt](https://github.com/liggitt)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top