Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 282 for ContainerT (0.82 sec)

  1. pkg/kubelet/server/server.go

    	found := false
    	for _, container := range pod.Spec.Containers {
    		if container.Name == containerName {
    			found = true
    			break
    		}
    	}
    	if !found {
    		for _, container := range pod.Spec.InitContainers {
    			if container.Name == containerName {
    				found = true
    				break
    			}
    		}
    	}
    	if !found {
    		for _, container := range pod.Spec.EphemeralContainers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/concepts.md

    !!! tip
        Don't worry if some of these items about **containers**, Docker, or Kubernetes don't make a lot of sense yet.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/generated.proto

      // Restricts the check for exit codes to the container with the
      // specified name. When null, the rule applies to all containers.
      // When specified, it should match one the container or initContainer
      // names in the pod template.
      // +optional
      optional string containerName = 1;
    
      // Represents the relationship between the container exit code(s) and the
      // specified values. Containers completed with success (exit code 0) are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  4. pkg/controller/job/pod_failure_policy_test.go

    					Phase: v1.PodFailed,
    					ContainerStatuses: []v1.ContainerStatus{
    						{
    							Name: "main-container",
    							State: v1.ContainerState{
    								Terminated: &v1.ContainerStateTerminated{
    									ExitCode: 2,
    								},
    							},
    						},
    					},
    				},
    			},
    			wantJobFailureMessage: ptr.To("Container main-container for pod default/mypod failed with exit code 2 matching FailJob rule at index 1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. pkg/features/kube_features.go

    	// owner: @gjkim42 @SergeyKanzhelev @matthyx @tzneal
    	// kep: http://kep.k8s.io/753
    	// alpha: v1.28
    	// beta: v1.29
    	//
    	// Introduces sidecar containers, a new type of init container that starts
    	// before other containers but remains running for the full duration of the
    	// pod's lifecycle and will not block pod termination.
    	SidecarContainers featuregate.Feature = "SidecarContainers"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/conversion.go

    	"pod.beta.kubernetes.io/init-containers":          true,
    	"pod.alpha.kubernetes.io/init-containers":         true,
    	"pod.beta.kubernetes.io/init-container-statuses":  true,
    	"pod.alpha.kubernetes.io/init-container-statuses": true,
    }
    
    // dropInitContainerAnnotations returns a copy of the annotations with init container annotations removed,
    // or the original annotations if no init container annotations were present.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. pkg/apis/batch/types.go

    	// Restricts the check for exit codes to the container with the
    	// specified name. When null, the rule applies to all containers.
    	// When specified, it should match one the container or initContainer
    	// names in the pod template.
    	// +optional
    	ContainerName *string
    
    	// Represents the relationship between the container exit code(s) and the
    	// specified values. Containers completed with success (exit code 0) are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. cluster/gce/windows/smoke-test.sh

    }
    
    function test_windows_node_to_windows_pod {
      echo "TODO: ${FUNCNAME[0]}"
    }
    
    # TODO(pjh): this test failed for me once with
    #   error: unable to upgrade connection: container not found ("nettest")
    # Maybe the container crashed for some reason? Investigate if it happens more.
    #
    # TODO(pjh): another one-time failure:
    #   error: unable to upgrade connection: Authorization error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1/types.go

    	//
    	// - In: the requirement is satisfied if at least one container exit code
    	//   (might be multiple if there are multiple containers not restricted
    	//   by the 'containerName' field) is in the set of specified values.
    	// - NotIn: the requirement is satisfied if at least one container exit code
    	//   (might be multiple if there are multiple containers not restricted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/controlplane/volumes.go

    	defaultFlexvolumeDirVolumePath = "/usr/libexec/kubernetes/kubelet-plugins/volume/exec"
    )
    
    // caCertsExtraVolumePaths specifies the paths that can be conditionally mounted into the apiserver and controller-manager containers
    // as /etc/ssl/certs might be or contain a symlink to them. It's a variable since it may be changed in unit testing. This var MUST
    // NOT be changed in normal codepaths during runtime.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top