Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 287 for containerB (0.14 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. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

    // attribute already exists with a different value, returns an error.
    template <typename ContainerT,
              typename = typename std::enable_if<
                  std::is_same<mlir::Type, decltype(*std::declval<ContainerT>()
                                                         .begin())>::value>::type>
    Status SetTypeAttribute(absl::string_view name, ContainerT types,
                            AttrValueMap* values) {
      AttrValue value;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. pkg/registry/batch/job/storage/storage_test.go

    			},
    			ManualSelector: newBool(true),
    			Template: api.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{"a": "b"},
    				},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{
    							Name:                     "test",
    							Image:                    "test_image",
    							ImagePullPolicy:          api.PullIfNotPresent,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. 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)
Back to top