Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for ResourceRequirements (0.34 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.ResourceRequirements)(nil), (*core.ResourceRequirements)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_ResourceRequirements_To_core_ResourceRequirements(a.(*v1.ResourceRequirements), b.(*core.ResourceRequirements), 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)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      map<string, k8s.io.apimachinery.pkg.api.resource.Quantity> used = 2;
    }
    
    // ResourceRequirements describes the compute resource requirements.
    message ResourceRequirements {
      // Limits describes the maximum amount of compute resources allowed.
      // More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
    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

    type Capabilities struct {
    	// Added capabilities
    	// +optional
    	Add []Capability
    	// Removed capabilities
    	// +optional
    	Drop []Capability
    }
    
    // ResourceRequirements describes the compute resource requirements.
    type ResourceRequirements struct {
    	// Limits describes the maximum amount of compute resources allowed.
    	// +optional
    	Limits ResourceList
    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

      // +optional
      map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> used = 2;
    }
    
    // ResourceRequirements describes the compute resource requirements.
    message ResourceRequirements {
      // Limits describes the maximum amount of compute resources allowed.
      // More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
    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.go

    	// Removed capabilities
    	// +optional
    	// +listType=atomic
    	Drop []Capability `json:"drop,omitempty" protobuf:"bytes,2,rep,name=drop,casttype=Capability"`
    }
    
    // ResourceRequirements describes the compute resource requirements.
    type ResourceRequirements struct {
    	// Limits describes the maximum amount of compute resources allowed.
    	// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    func validateOverhead(overhead core.ResourceList, fldPath *field.Path, opts PodValidationOptions) field.ErrorList {
    	// reuse the ResourceRequirements validation logic
    	return ValidateResourceRequirements(&core.ResourceRequirements{Limits: overhead}, nil, fldPath, opts)
    }
    
    // Validates that given value is not negative.
    func ValidateNonnegativeField(value int64, fldPath *field.Path) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in...
    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. api/openapi-spec/v3/apis__batch__v1_openapi.json

            },
            "required": [
              "resource"
            ],
            "type": "object",
            "x-kubernetes-map-type": "atomic"
          },
          "io.k8s.api.core.v1.ResourceRequirements": {
            "description": "ResourceRequirements describes the compute resource requirements.",
            "properties": {
              "claims": {
    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.29.md

    - Fixed the API comments for the `FailIndex` Job pod failure policy action. ([#121764](https://github.com/kubernetes/kubernetes/pull/121764), [@mimowo](https://github.com/mimowo))
    - Go API: the `ResourceRequirements` struct was replaced with `VolumeResourceRequirements` for use with volumes. ([#118653](https://github.com/kubernetes/kubernetes/pull/118653), [@pohly](https://github.com/pohly))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              },
              "metadata": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
Back to top