Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for PodSpec (0.21 sec)

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

    func validateAppArmorAnnotationsAndFieldsMatchOnCreate(objectMeta metav1.ObjectMeta, podSpec *core.PodSpec, specPath *field.Path) field.ErrorList {
    	if !utilfeature.DefaultFeatureGate.Enabled(features.AppArmorFields) {
    		return nil
    	}
    	if podSpec.OS != nil && podSpec.OS.Name == core.Windows {
    		// Skip consistency check for windows pods.
    		return nil
    	}
    
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // The container image may not match the image used in the PodSpec,
      // as it may have been resolved by the runtime.
      // More info: https://kubernetes.io/docs/concepts/containers/images.
      optional string image = 6;
    
      // ImageID is the image ID of the container's image. The image ID may not
      // match the image ID of the image used in the PodSpec, as it may have been
      // resolved by the runtime.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// The container image may not match the image used in the PodSpec,
    	// as it may have been resolved by the runtime.
    	// More info: https://kubernetes.io/docs/concepts/containers/images.
    	Image string
    	// ImageID is the image ID of the container's image. The image ID may not
    	// match the image ID of the image used in the PodSpec, as it may have been
    	// resolved by the runtime.
    	ImageID string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // The container image may not match the image used in the PodSpec,
      // as it may have been resolved by the runtime.
      // More info: https://kubernetes.io/docs/concepts/containers/images.
      optional string image = 6;
    
      // ImageID is the image ID of the container's image. The image ID may not
      // match the image ID of the image used in the PodSpec, as it may have been
      // resolved by the runtime.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"imageID":            "ImageID is the image ID of the container's image. The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddConversionFunc((*core.PodSpec)(nil), (*v1.PodSpec)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_core_PodSpec_To_v1_PodSpec(a.(*core.PodSpec), b.(*v1.PodSpec), 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)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// The container image may not match the image used in the PodSpec,
    	// as it may have been resolved by the runtime.
    	// More info: https://kubernetes.io/docs/concepts/containers/images.
    	Image string `json:"image" protobuf:"bytes,6,opt,name=image"`
    	// ImageID is the image ID of the container's image. The image ID may not
    	// match the image ID of the image used in the PodSpec, as it may have been
    	// resolved by the runtime.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

              }
            },
            "type": "object"
          },
          "io.k8s.api.core.v1.PodSpec": {
            "description": "PodSpec is a description of a pod.",
            "properties": {
              "activeDeadlineSeconds": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    - `PodSchedulingReadiness` is graduated to beta. ([#115815](https://github.com/kubernetes/kubernetes/pull/115815), [@Huang-Wei](https://github.com/Huang-Wei))
    - `PodSpec.Container.Resources` became mutable for CPU and memory resource types.
      - `PodSpec.Container.ResizePolicy` (new object) gives users control over how their containers are resized.
      - `PodStatus.Resize` status describes the state of a requested Pod resize.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

    - Removed note that `hostAliases` are not supported on hostNetwork Pods from the PodSpec API. The feature has been supported since v1.8. ([#122422](https://github.com/kubernetes/kubernetes/pull/122422), [@neolit123](https://github.com/neolit123))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top