Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for EphemeralContainers (0.29 sec)

  1. pkg/apis/core/validation/validation.go

    	allErrs := validatePodMetadataAndSpec(pod, opts)
    
    	fldPath := field.NewPath("spec")
    	// EphemeralContainers can only be set on update using the ephemeralcontainers subresource
    	if len(pod.Spec.EphemeralContainers) > 0 {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("ephemeralContainers"), "cannot be set on create"))
    	}
    	// A Pod cannot be assigned a Node if there are remaining scheduling gates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.22.md

    - The `pods/ephemeralcontainers` API now returns and expects a `Pod` object instead of `EphemeralContainers`. This is incompatible with the previous alpha-level API. ([#101034](https://github.com/kubernetes/kubernetes/pull/101034), [@verb](https://github.com/verb)) [SIG Apps, Auth, CLI and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource.
    	// +optional
    	// +patchMergeKey=name
    	// +patchStrategy=merge
    	// +listType=map
    	// +listMapKey=name
    	EphemeralContainers []EphemeralContainer `json:"ephemeralContainers,omitempty" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,34,rep,name=ephemeralContainers"`
    	// Restart policy for all containers within the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    		out.Volumes = nil
    	}
    	out.InitContainers = *(*[]core.Container)(unsafe.Pointer(&in.InitContainers))
    	out.Containers = *(*[]core.Container)(unsafe.Pointer(&in.Containers))
    	out.EphemeralContainers = *(*[]core.EphemeralContainer)(unsafe.Pointer(&in.EphemeralContainers))
    	out.RestartPolicy = core.RestartPolicy(in.RestartPolicy)
    	out.TerminationGracePeriodSeconds = (*int64)(unsafe.Pointer(in.TerminationGracePeriodSeconds))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // creating a pod, and it cannot be modified by updating the pod spec. In order to add an
      // ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource.
      // +optional
      // +patchMergeKey=name
      // +patchStrategy=merge
      repeated EphemeralContainer ephemeralContainers = 34;
    
      // Restart policy for all containers within the pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// creating a pod, and it cannot be modified by updating the pod spec. In order to add an
    	// ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource.
    	// +optional
    	EphemeralContainers []EphemeralContainer
    	// +optional
    	RestartPolicy RestartPolicy
    	// Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"ephemeralContainers":           "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.25.md

    - [Ephemeral Containers](https://kubernetes.io/docs/concepts/workloads/pods/ephemeral-containers/) are now generally available (GA). The `EphemeralContainers` feature gate is always enabled and should be removed from `--feature-gates` flag on the kube-apiserver and the kubelet command lines. The `EphemeralContainers` feature gate is [deprecated and scheduled for removal](https://kubernetes.io/docs/reference/using-api/deprecation-policy/#deprecation)  in a future release. ([...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource.
      // +optional
      // +patchMergeKey=name
      // +patchStrategy=merge
      // +listType=map
      // +listMapKey=name
      repeated EphemeralContainer ephemeralContainers = 34;
    
      // Restart policy for all containers within the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "properties": {
              "args": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top