Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for volumeattributesclass (0.55 sec)

  1. pkg/apis/storage/v1alpha1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1alpha1.VolumeAttributesClass)(nil), (*storage.VolumeAttributesClass)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1alpha1_VolumeAttributesClass_To_storage_VolumeAttributesClass(a.(*v1alpha1.VolumeAttributesClass), b.(*storage.VolumeAttributesClass), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1alpha1/types.go

    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // VolumeAttributesClass represents a specification of mutable volume attributes
    // defined by the CSI driver. The class can be specified during dynamic provisioning
    // of PersistentVolumeClaims, and changed in the PersistentVolumeClaim spec after provisioning.
    type VolumeAttributesClass struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation.go

    }
    
    // ValidateVolumeAttributesClass validates a VolumeAttributesClass.
    func ValidateVolumeAttributesClass(volumeAttributesClass *storage.VolumeAttributesClass) field.ErrorList {
    	allErrs := apivalidation.ValidateObjectMeta(&volumeAttributesClass.ObjectMeta, false, apivalidation.ValidateClassName, field.NewPath("metadata"))
    	allErrs = append(allErrs, validateProvisioner(volumeAttributesClass.DriverName, field.NewPath("driverName"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

      // +optional
      optional VolumeError detachError = 4;
    }
    
    // VolumeAttributesClass represents a specification of mutable volume attributes
    // defined by the CSI driver. The class can be specified during dynamic provisioning
    // of PersistentVolumeClaims, and changed in the PersistentVolumeClaim spec after provisioning.
    message VolumeAttributesClass {
      // Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. pkg/apis/storage/zz_generated.deepcopy.go

    func (in *VolumeAttributesClass) DeepCopy() *VolumeAttributesClass {
    	if in == nil {
    		return nil
    	}
    	out := new(VolumeAttributesClass)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *VolumeAttributesClass) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    driver. The underlying storage provider supports changing these attributes on an existing volume, however the parameters field itself is immutable. To invoke a volume update, a new VolumeAttributesClass should be created with new parameters, and the PersistentVolumeClaim should be updated to reference the new VolumeAttributesClass.\n\nThis field is required and must contain at least one key/value pair. The keys cannot be empty, and the maximum number of parameters is 512, with a cumulative max size of 256K....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. pkg/api/persistentvolumeclaim/util_test.go

    			wantVAC:    vacName,
    		},
    	}
    
    	for testName, test := range tests {
    		t.Run(testName, func(t *testing.T) {
    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.VolumeAttributesClass, test.vacEnabled)
    			DropDisabledFields(&test.spec, &test.oldSpec)
    			if test.spec.VolumeAttributesClassName != test.wantVAC {
    				t.Errorf("expected vac was not met, test: %s, vacEnabled: %v, spec: %+v, expected VAC: %+v",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. pkg/apis/storage/types.go

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // VolumeAttributesClass represents a specification of mutable volume attributes
    // defined by the CSI driver. The class can be specified during dynamic provisioning
    // of PersistentVolumeClaims, and changed in the PersistentVolumeClaim spec after provisioning.
    type VolumeAttributesClass struct {
    	metav1.TypeMeta
    
    	// Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  9. 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)
Back to top