Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,623 for ContainerT (0.16 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    		Command:     container.Command,
    		Args:        []string(nil),
    		WorkingDir:  container.WorkingDir,
    		Labels:      newContainerLabels(container, pod),
    		Annotations: newContainerAnnotations(container, pod, restartCount, opts),
    		Devices:     makeDevices(opts),
    		Mounts:      m.makeMounts(opts, container),
    		LogPath:     containerLogsPath,
    		Stdin:       container.Stdin,
    		StdinOnce:   container.StdinOnce,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  2. releasenotes/notes/default-container.yaml

    area: networking
    issue:
      - 26764
    
    releaseNotes:
    - |
      **Improved** sidecar injection to automatically specify the `kubectl.kubernetes.io/default-logs-container`. This ensures `kubectl logs`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 346 bytes
    - Viewed (0)
  3. docs/en/docs/deployment/docker.md

    A container image is comparable to the **program** file and contents, e.g. `python` and some file `main.py`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. pkg/kubelet/types/types_test.go

    				data.containers, data.sortedStatuses, data.statuses)
    		}
    	}
    }
    
    func TestSortStatusesOfInitContainers(t *testing.T) {
    	pod := v1.Pod{
    		Spec: v1.PodSpec{},
    	}
    	var tests = []struct {
    		containers     []v1.Container
    		statusMap      map[string]*v1.ContainerStatus
    		expectStatuses []v1.ContainerStatus
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 19 08:28:25 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  5. cni/pkg/plugin/plugin_test.go

    	cniConf := buildMockConf(true, url)
    
    	pod, ns := buildFakePodAndNSForClient()
    
    	proxy := corev1.Container{Name: "istio-proxy"}
    	app := corev1.Container{Name: "app"}
    
    	pod.Spec.Containers = []corev1.Container{app, proxy}
    	pod.ObjectMeta.Annotations = map[string]string{annotation.SidecarStatus.Name: "true"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/podresources/server_v1_test.go

    			return false
    		}
    		if podResA.Namespace != podResB.Namespace {
    			return false
    		}
    		if len(podResA.Containers) != len(podResB.Containers) {
    			return false
    		}
    		for jdx := 0; jdx < len(podResA.Containers); jdx++ {
    			cntA := podResA.Containers[jdx]
    			cntB := podResB.Containers[jdx]
    
    			if cntA.Name != cntB.Name {
    				return false
    			}
    			if !equalInt64s(cntA.CpuIds, cntB.CpuIds) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  7. pkg/api/v1/pod/util.go

    type ContainerType int
    
    const (
    	// Containers is for normal containers
    	Containers ContainerType = 1 << iota
    	// InitContainers is for init containers
    	InitContainers
    	// EphemeralContainers is for ephemeral containers
    	EphemeralContainers
    )
    
    // AllContainers specifies that all containers be visited
    const AllContainers ContainerType = InitContainers | Containers | EphemeralContainers
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 17:18:04 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. pkg/kubelet/pleg/generic_test.go

    		// Clear the IP address and mark the container terminated
    		container = createTestContainer("c0", kubecontainer.ContainerStateExited)
    		pod = &kubecontainer.Pod{
    			ID:         id,
    			Containers: []*kubecontainer.Container{container},
    		}
    		status = &kubecontainer.PodStatus{
    			ID:                id,
    			ContainerStatuses: []*kubecontainer.Status{{ID: container.ID, State: kubecontainer.ContainerStateExited}},
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. pkg/kubelet/container/helpers.go

    			return false
    		}
    	}
    	return true
    }
    
    // HashContainer returns the hash of the container. It is used to compare
    // the running container with its desired spec.
    // Note: remember to update hashValues in container_hash_test.go as well.
    func HashContainer(container *v1.Container) uint64 {
    	hash := fnv.New32a()
    	containerJSON, _ := json.Marshal(pickFieldsToHash(container))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_termination_order_test.go

    		// sidecars should exit in reverse order, so
    		// sc1 = 3 (main container + sc3 + sc2)
    		{
    			containerName: "sc1",
    			expectedDelay: 3,
    		},
    		// sc2 = 2 (main container + sc3)
    		{
    			containerName: "sc2",
    			expectedDelay: 2,
    		},
    		// sc3 = 1 (main container)
    		{
    			containerName: "sc3",
    			expectedDelay: 1,
    		},
    		// main container = 0 delay, nothing to wait on
    		{
    			containerName: "main",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 00:07:21 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top