Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for volumeattributesclass (0.38 sec)

  1. api/discovery/aggregated_v2.json

            },
            {
              "freshness": "Current",
              "resources": [
                {
                  "resource": "volumeattributesclasses",
                  "responseKind": {
                    "group": "",
                    "kind": "VolumeAttributesClass",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "shortNames": [
                    "vac"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. pkg/api/persistentvolume/util_test.go

    			expectOldSpec: specWithVACName(nil),
    		},
    	}
    
    	for name, tc := range tests {
    		t.Run(name, func(t *testing.T) {
    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.VolumeAttributesClass, tc.vacEnabled)
    
    			DropDisabledSpecFields(tc.newSpec, tc.oldSpec)
    			if !reflect.DeepEqual(tc.newSpec, tc.expectNewSpec) {
    				t.Error(cmp.Diff(tc.newSpec, tc.expectNewSpec))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. pkg/apis/core/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
    	CurrentVolumeAttributesClassName *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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top