Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PortworxVolumeSource (0.37 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/portworxvolumesource.go

    // with apply.
    type PortworxVolumeSourceApplyConfiguration struct {
    	VolumeID *string `json:"volumeID,omitempty"`
    	FSType   *string `json:"fsType,omitempty"`
    	ReadOnly *bool   `json:"readOnly,omitempty"`
    }
    
    // PortworxVolumeSourceApplyConfiguration constructs an declarative configuration of the PortworxVolumeSource type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  2. pkg/volume/portworx/portworx_test.go

    	}
    	if !plug.CanSupport(&volume.Spec{Volume: &v1.Volume{VolumeSource: v1.VolumeSource{PortworxVolume: &v1.PortworxVolumeSource{}}}}) {
    		t.Errorf("Expected true")
    	}
    	if !plug.CanSupport(&volume.Spec{PersistentVolume: &v1.PersistentVolume{Spec: v1.PersistentVolumeSpec{PersistentVolumeSource: v1.PersistentVolumeSource{PortworxVolume: &v1.PortworxVolumeSource{}}}}}) {
    		t.Errorf("Expected true")
    	}
    }
    
    func TestGetAccessModes(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 21 02:17:04 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  3. pkg/volume/csimigration/plugin_manager_test.go

    			csiMigrationEnabled:  true,
    			spec: &volume.Spec{
    				PersistentVolume: &v1.PersistentVolume{
    					Spec: v1.PersistentVolumeSpec{
    						PersistentVolumeSource: v1.PersistentVolumeSource{
    							PortworxVolume: &v1.PortworxVolumeSource{
    								VolumeID: "test-volume",
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			name:                 "Portworx PD PV Source with CSIMigrationPortworx disabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top