Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ISCSIPersistentVolumeSource (0.26 sec)

  1. pkg/volume/iscsi/iscsi.go

    				secret[name] = string(data)
    			}
    		}
    	}
    	return secret, err
    }
    
    func createPersistentVolumeFromISCSIPVSource(volumeName string, iscsi v1.ISCSIPersistentVolumeSource) *v1.PersistentVolume {
    	block := v1.PersistentVolumeBlock
    	return &v1.PersistentVolume{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: volumeName,
    		},
    		Spec: v1.PersistentVolumeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/api/core/v1,GlusterfsVolumeSource,EndpointsName
    API rule violation: names_match,k8s.io/api/core/v1,ISCSIPersistentVolumeSource,DiscoveryCHAPAuth
    API rule violation: names_match,k8s.io/api/core/v1,ISCSIPersistentVolumeSource,SessionCHAPAuth
    API rule violation: names_match,k8s.io/api/core/v1,ISCSIVolumeSource,DiscoveryCHAPAuth
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/defaults.go

    	}
    }
    func SetDefaults_ISCSIVolumeSource(obj *v1.ISCSIVolumeSource) {
    	if obj.ISCSIInterface == "" {
    		obj.ISCSIInterface = "default"
    	}
    }
    func SetDefaults_ISCSIPersistentVolumeSource(obj *v1.ISCSIPersistentVolumeSource) {
    	if obj.ISCSIInterface == "" {
    		obj.ISCSIInterface = "default"
    	}
    }
    func SetDefaults_AzureDiskVolumeSource(obj *v1.AzureDiskVolumeSource) {
    	if obj.CachingMode == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. pkg/apis/core/fuzzer/fuzzer.go

    			}
    		},
    		func(i *core.ISCSIVolumeSource, c fuzz.Continue) {
    			i.ISCSIInterface = c.RandString()
    			if i.ISCSIInterface == "" {
    				i.ISCSIInterface = "default"
    			}
    		},
    		func(i *core.ISCSIPersistentVolumeSource, c fuzz.Continue) {
    			i.ISCSIInterface = c.RandString()
    			if i.ISCSIInterface == "" {
    				i.ISCSIInterface = "default"
    			}
    		},
    		func(i *core.PersistentVolumeClaimSpec, c fuzz.Continue) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top