Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for sizeLimit (0.41 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    	// More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir
    	// +optional
    	SizeLimit *resource.Quantity `json:"sizeLimit,omitempty" protobuf:"bytes,2,opt,name=sizeLimit"`
    }
    
    // Represents a Glusterfs mount that lasts the lifetime of a pod.
    // Glusterfs volumes do not support ownership management or SELinux relabeling.
    type GlusterfsVolumeSource struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	numVolumes := 0
    	allErrs := field.ErrorList{}
    	if source.EmptyDir != nil {
    		numVolumes++
    		if source.EmptyDir.SizeLimit != nil && source.EmptyDir.SizeLimit.Cmp(resource.Quantity{}) < 0 {
    			allErrs = append(allErrs, field.Forbidden(fldPath.Child("emptyDir").Child("sizeLimit"), "SizeLimit field must be a valid resource quantity"))
    		}
    	}
    	if source.HostPath != nil {
    		if numVolumes > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/zz_generated.conversion.go

    func autoConvert_v1_EmptyDirVolumeSource_To_core_EmptyDirVolumeSource(in *v1.EmptyDirVolumeSource, out *core.EmptyDirVolumeSource, s conversion.Scope) error {
    	out.Medium = core.StorageMedium(in.Medium)
    	out.SizeLimit = (*resource.Quantity)(unsafe.Pointer(in.SizeLimit))
    	return nil
    }
    
    // Convert_v1_EmptyDirVolumeSource_To_core_EmptyDirVolumeSource is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"sizeLimit": "sizeLimit is the total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	LO_FLAGS_PARTSCAN  = 0x8
    	LO_FLAGS_DIRECT_IO = 0x10
    )
    
    type LoopInfo64 struct {
    	Device           uint64
    	Inode            uint64
    	Rdevice          uint64
    	Offset           uint64
    	Sizelimit        uint64
    	Number           uint32
    	Encrypt_type     uint32
    	Encrypt_key_size uint32
    	Flags            uint32
    	File_name        [64]uint8
    	Crypt_name       [64]uint8
    	Encrypt_key      [32]uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string medium = 1;
    
      // sizeLimit is the total amount of local storage required for this EmptyDir volume.
      // The size limit is also applicable for memory medium.
      // The maximum usage on memory medium EmptyDir would be the minimum value between
      // the SizeLimit specified here and the sum of memory limits of all containers in a 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)
  7. pkg/apis/core/types.go

    	// The maximum usage on memory medium EmptyDir would be the minimum value between
    	// the SizeLimit specified here and the sum of memory limits of all containers in a pod.
    	// The default is nil which means that the limit is undefined.
    	// More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir
    	// +optional
    	SizeLimit *resource.Quantity
    }
    
    // StorageMedium defines ways that storage can be allocated to a volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "sizeLimit": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity"
                  }
                ],
    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.25.md

    - Make PodSpec.Ports' description clearer on how this information is only informational and how it can be incorrect. ([#11...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top