Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for PortworxVolumeSource (0.33 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)
  4. pkg/volume/portworx/portworx.go

    	portworxVolume := &v1.Volume{
    		Name: volumeName,
    		VolumeSource: v1.VolumeSource{
    			PortworxVolume: &v1.PortworxVolumeSource{
    				VolumeID: volumeName,
    			},
    		},
    	}
    	return volume.ReconstructedVolume{
    		Spec: volume.NewSpecFromVolume(portworxVolume),
    	}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.PortworxVolumeSource)(nil), (*core.PortworxVolumeSource)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_PortworxVolumeSource_To_core_PortworxVolumeSource(a.(*v1.PortworxVolumeSource), b.(*core.PortworxVolumeSource), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  6. pkg/apis/core/zz_generated.deepcopy.go

    func (in *PortworxVolumeSource) DeepCopyInto(out *PortworxVolumeSource) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PortworxVolumeSource.
    func (in *PortworxVolumeSource) DeepCopy() *PortworxVolumeSource {
    	if in == nil {
    		return nil
    	}
    	out := new(PortworxVolumeSource)
    	in.DeepCopyInto(out)
    	return out
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *PortworxVolumeSource) DeepCopyInto(out *PortworxVolumeSource) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PortworxVolumeSource.
    func (in *PortworxVolumeSource) DeepCopy() *PortworxVolumeSource {
    	if in == nil {
    		return nil
    	}
    	out := new(PortworxVolumeSource)
    	in.DeepCopyInto(out)
    	return out
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // +kubebuilder:validation:MaxLength=316
      optional string error = 3;
    }
    
    // PortworxVolumeSource represents a Portworx volume resource.
    message PortworxVolumeSource {
      // volumeID uniquely identifies a Portworx volume
      optional string volumeID = 1;
    
      // fSType represents the filesystem type to mount
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// Must be a filesystem type supported by the host operating system.
    	// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
    	FSType string
    }
    
    // PortworxVolumeSource represents a Portworx volume resource.
    type PortworxVolumeSource struct {
    	// VolumeID uniquely identifies a Portworx volume
    	VolumeID string
    	// FSType represents the filesystem type to mount
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.pb.go

    func (m *PortworxVolumeSource) Reset()      { *m = PortworxVolumeSource{} }
    func (*PortworxVolumeSource) ProtoMessage() {}
    func (*PortworxVolumeSource) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{156}
    }
    func (m *PortworxVolumeSource) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top