Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for ScaleIOVolumeSource (0.33 sec)

  1. pkg/apis/core/v1/defaults.go

    	}
    	if obj.RadosUser == "" {
    		obj.RadosUser = "admin"
    	}
    	if obj.Keyring == "" {
    		obj.Keyring = "/etc/ceph/keyring"
    	}
    }
    
    func SetDefaults_ScaleIOVolumeSource(obj *v1.ScaleIOVolumeSource) {
    	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)
  2. pkg/apis/core/fuzzer/fuzzer.go

    			if obj.FSType == nil {
    				obj.FSType = new(string)
    				*obj.FSType = "ext4"
    			}
    			if obj.ReadOnly == nil {
    				obj.ReadOnly = new(bool)
    				*obj.ReadOnly = false
    			}
    		},
    		func(sio *core.ScaleIOVolumeSource, 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)
  3. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.ScaleIOVolumeSource)(nil), (*core.ScaleIOVolumeSource)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_ScaleIOVolumeSource_To_core_ScaleIOVolumeSource(a.(*v1.ScaleIOVolumeSource), b.(*core.ScaleIOVolumeSource), 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)
  4. pkg/api/v1/pod/util_test.go

    				VolumeSource: v1.VolumeSource{
    					Secret: &v1.SecretVolumeSource{
    						SecretName: "Spec.Volumes[*].VolumeSource.Secret"}}}, {
    				VolumeSource: v1.VolumeSource{
    					ScaleIO: &v1.ScaleIOVolumeSource{
    						SecretRef: &v1.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.ScaleIO.SecretRef"}}}}, {
    				VolumeSource: v1.VolumeSource{
    					ISCSI: &v1.ISCSIVolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  5. pkg/apis/core/zz_generated.deepcopy.go

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

    func (in *ScaleIOVolumeSource) DeepCopyInto(out *ScaleIOVolumeSource) {
    	*out = *in
    	if in.SecretRef != nil {
    		in, out := &in.SecretRef, &out.SecretRef
    		*out = new(LocalObjectReference)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ScaleIOVolumeSource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  7. pkg/api/pod/warnings_test.go

    		},
    		{
    			name: "scaleIO",
    			template: &api.PodTemplateSpec{Spec: api.PodSpec{
    				Volumes: []api.Volume{
    					{Name: "s", VolumeSource: api.VolumeSource{ScaleIO: &api.ScaleIOVolumeSource{}}},
    				}},
    			},
    			expected: []string{`spec.volumes[0].scaleIO: deprecated in v1.16, non-functional in v1.22+`},
    		},
    		{
    			name: "flocker",
    			template: &api.PodTemplateSpec{Spec: api.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            }
          },
          "type": "object"
        },
        "io.k8s.api.core.v1.ScaleIOVolumeSource": {
          "description": "ScaleIOVolumeSource represents a persistent ScaleIO volume",
          "properties": {
            "fsType": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. pkg/api/pod/util_test.go

    				VolumeSource: api.VolumeSource{
    					Secret: &api.SecretVolumeSource{
    						SecretName: "Spec.Volumes[*].VolumeSource.Secret"}}}, {
    				VolumeSource: api.VolumeSource{
    					ScaleIO: &api.ScaleIOVolumeSource{
    						SecretRef: &api.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.ScaleIO.SecretRef"}}}}, {
    				VolumeSource: api.VolumeSource{
    					ISCSI: &api.ISCSIVolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.pb.go

    func (m *ScaleIOVolumeSource) Reset()      { *m = ScaleIOVolumeSource{} }
    func (*ScaleIOVolumeSource) ProtoMessage() {}
    func (*ScaleIOVolumeSource) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{181}
    }
    func (m *ScaleIOVolumeSource) 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