Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for volumeattributesclasses (0.89 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

    		{Name: "Claim", Type: "string", Description: apiv1.PersistentVolumeSpec{}.SwaggerDoc()["claimRef"]},
    		{Name: "StorageClass", Type: "string", Description: "StorageClass of the pv"},
    		{Name: "VolumeAttributesClass", Type: "string", Description: "VolumeAttributesClass of the pv"},
    		{Name: "Reason", Type: "string", Description: apiv1.PersistentVolumeStatus{}.SwaggerDoc()["reason"]},
    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. 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)
  4. CHANGELOG/CHANGELOG-1.30.md

       ([#117046](https://github.com/kubernetes/kubernetes/pull/117046), [@howardjohn](https://github.com/howardjohn))
    - Printed more information when `kubectl describe` a `VolumeAttributesClass`.
       ([#122640](https://github.com/kubernetes/kubernetes/pull/122640), [@carlory](https://github.com/carlory))
    - Promoted the `CRDValidationRatcheting` feature gate to beta and made it enabled by default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top