Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for ephemeralcontainers (0.28 sec)

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

    	}
    
    	// Part 2: Validate that the changes between oldPod.Spec.EphemeralContainers and
    	// newPod.Spec.EphemeralContainers are allowed.
    	//
    	// Existing EphemeralContainers may not be changed. Order isn't preserved by patch, so check each individually.
    	newContainerIndex := make(map[string]*core.EphemeralContainer)
    	specPath := field.NewPath("spec").Child("ephemeralContainers")
    	for i := range newPod.Spec.EphemeralContainers {
    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. 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)
  3. 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)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    	if err := s.AddGeneratedConversionFunc((*v1.EphemeralContainer)(nil), (*core.EphemeralContainer)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_EphemeralContainer_To_core_EphemeralContainer(a.(*v1.EphemeralContainer), b.(*core.EphemeralContainer), scope)
    	}); err != nil {
    		return err
    	}
    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

    }
    
    func (EphemeralContainer) SwaggerDoc() map[string]string {
    	return map_EphemeralContainer
    }
    
    var map_EphemeralContainerCommon = map[string]string{
    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. 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)
  9. 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)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "items": {
                  "allOf": [
                    {
                      "$ref": "#/components/schemas/io.k8s.api.core.v1.EphemeralContainer"
                    }
                  ],
                  "default": {}
                },
                "type": "array",
    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