Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for ScaleIOPersistentVolumeSource (0.54 sec)

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

    	ReadOnly         *bool                              `json:"readOnly,omitempty"`
    }
    
    // ScaleIOPersistentVolumeSourceApplyConfiguration constructs an declarative configuration of the ScaleIOPersistentVolumeSource type for use with
    // apply.
    func ScaleIOPersistentVolumeSource() *ScaleIOPersistentVolumeSourceApplyConfiguration {
    	return &ScaleIOPersistentVolumeSourceApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 6.4K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/util/util_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name: nonMigratedVolume,
    				},
    				Spec: v1.PersistentVolumeSpec{
    					PersistentVolumeSource: v1.PersistentVolumeSource{
    						ScaleIO: &v1.ScaleIOPersistentVolumeSource{},
    					},
    					ClaimRef: &nonMigratedObjectReference,
    				},
    			},
    		},
    		{
    			desc:           "pv type that supports csi migration",
    			createNodeName: nodeName,
    			pod: &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 05:42:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. pkg/api/v1/persistentvolume/util_test.go

    				ScaleIO: &corev1.ScaleIOPersistentVolumeSource{
    					SecretRef: &corev1.SecretReference{
    						Name: "Spec.PersistentVolumeSource.ScaleIO.SecretRef"}}}}},
    		{Spec: corev1.PersistentVolumeSpec{
    			ClaimRef: &corev1.ObjectReference{Namespace: "claimrefns", Name: "claimrefname"},
    			PersistentVolumeSource: corev1.PersistentVolumeSource{
    				ScaleIO: &corev1.ScaleIOPersistentVolumeSource{
    					SecretRef: &corev1.SecretReference{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. pkg/api/persistentvolume/util_test.go

    		},
    		{
    			name: "PV ScaleIO deprecation warning",
    			template: &api.PersistentVolume{
    				Spec: api.PersistentVolumeSpec{
    					PersistentVolumeSource: api.PersistentVolumeSource{
    						ScaleIO: &api.ScaleIOPersistentVolumeSource{
    							Gateway:          "",
    							System:           "",
    							SecretRef:        nil,
    							SSLEnabled:       false,
    							ProtectionDomain: "",
    							StoragePool:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/defaults.go

    	if obj.StorageMode == "" {
    		obj.StorageMode = "ThinProvisioned"
    	}
    	if obj.FSType == "" {
    		obj.FSType = "xfs"
    	}
    }
    
    func SetDefaults_ScaleIOPersistentVolumeSource(obj *v1.ScaleIOPersistentVolumeSource) {
    	if obj.StorageMode == "" {
    		obj.StorageMode = "ThinProvisioned"
    	}
    	if obj.FSType == "" {
    		obj.FSType = "xfs"
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. pkg/apis/core/fuzzer/fuzzer.go

    			if sio.StorageMode == "" {
    				sio.StorageMode = "ThinProvisioned"
    			}
    			sio.FSType = c.RandString()
    			if sio.FSType == "" {
    				sio.FSType = "xfs"
    			}
    		},
    		func(sio *core.ScaleIOPersistentVolumeSource, c fuzz.Continue) {
    			sio.StorageMode = c.RandString()
    			if sio.StorageMode == "" {
    				sio.StorageMode = "ThinProvisioned"
    			}
    			sio.FSType = c.RandString()
    			if sio.FSType == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.ScaleIOPersistentVolumeSource)(nil), (*core.ScaleIOPersistentVolumeSource)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_ScaleIOPersistentVolumeSource_To_core_ScaleIOPersistentVolumeSource(a.(*v1.ScaleIOPersistentVolumeSource), b.(*core.ScaleIOPersistentVolumeSource), 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)
  8. pkg/apis/core/zz_generated.deepcopy.go

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

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

    var xxx_messageInfo_SELinuxOptions proto.InternalMessageInfo
    
    func (m *ScaleIOPersistentVolumeSource) Reset()      { *m = ScaleIOPersistentVolumeSource{} }
    func (*ScaleIOPersistentVolumeSource) ProtoMessage() {}
    func (*ScaleIOPersistentVolumeSource) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{180}
    }
    func (m *ScaleIOPersistentVolumeSource) 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