Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ScaleIOVolumeSource (0.21 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/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)
  4. 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)
Back to top