Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for volumeattributesclass (0.48 sec)

  1. pkg/features/kube_features.go

    	// kep: https://kep.k8s.io/3751
    	// alpha: v1.29
    	//
    	// Enables user specified volume attributes for persistent volumes, like iops and throughput.
    	VolumeAttributesClass featuregate.Feature = "VolumeAttributesClass"
    
    	// owner: @cofyc
    	// alpha: v1.21
    	VolumeCapacityPriority featuregate.Feature = "VolumeCapacityPriority"
    
    	// owner: @ksubrmnn
    	// alpha: v1.14
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    		volumeMode = string(*obj.Spec.VolumeMode)
    	}
    
    	volumeAttributeClass := "<unset>"
    	if obj.Spec.VolumeAttributesClassName != nil {
    		volumeAttributeClass = *obj.Spec.VolumeAttributesClassName
    	}
    
    	row.Cells = append(row.Cells, obj.Name, aSize, modesStr, reclaimPolicyStr,
    		string(phase), claimRefUID, helper.GetPersistentVolumeClass(obj), volumeAttributeClass,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"volumeAttributesClassName": "volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass will be applied to the claim but it's not allowed to reset this field to empty 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)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.
      // When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim
      // This is an alpha field and requires enabling VolumeAttributesClass feature.
      // +featureGate=VolumeAttributesClass
      // +optional
      optional string currentVolumeAttributesClassName = 8;
    
    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

    	// currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.
    	// When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim
    	// This is an alpha field and requires enabling VolumeAttributesClass feature.
    	// +featureGate=VolumeAttributesClass
    	// +optional
    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/printers/internalversion/printers_test.go

    		}
    	}
    }
    
    func TestPrintVolumeAttributesClass(t *testing.T) {
    	tests := []struct {
    		vac      storage.VolumeAttributesClass
    		expected []metav1.TableRow
    	}{
    		{
    			vac: storage.VolumeAttributesClass{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "vac1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    		if !utilfeature.DefaultFeatureGate.Enabled(features.VolumeAttributesClass) {
    			allErrs = append(allErrs, field.Forbidden(field.NewPath("spec", "volumeAttributesClassName"), "update is forbidden when the VolumeAttributesClass feature gate is disabled"))
    		}
    		if opts.EnableVolumeAttributesClass {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

              "description": "volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass will be applied to the claim but it's not allowed to reset this field to empty string...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "description": "volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, it can be changed after the claim is created. An empty string value means that no VolumeAttributesClass will be applied to the claim but it's not allowed to reset this field to empty string...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation_test.go

    			expectValidationOpts:        PersistentVolumeSpecValidationOptions{EnableVolumeAttributesClass: false},
    		},
    		"old pv has volumeAttributesClass and feature-gate VolumeAttrributesClass is on": {
    			oldPv: &core.PersistentVolume{
    				Spec: core.PersistentVolumeSpec{
    					VolumeAttributesClassName: ptr.To("foo"),
    				},
    			},
    			enableVolumeAttributesClass: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top