Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for ISCSIPersistentVolumeSource (0.34 sec)

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

    	InitiatorName     *string                            `json:"initiatorName,omitempty"`
    }
    
    // ISCSIPersistentVolumeSourceApplyConfiguration constructs an declarative configuration of the ISCSIPersistentVolumeSource type for use with
    // apply.
    func ISCSIPersistentVolumeSource() *ISCSIPersistentVolumeSourceApplyConfiguration {
    	return &ISCSIPersistentVolumeSourceApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 7K bytes
    - Viewed (0)
  2. pkg/volume/iscsi/iscsi_test.go

    		t.Errorf("Expected false")
    	}
    	if !plug.CanSupport(&volume.Spec{PersistentVolume: &v1.PersistentVolume{Spec: v1.PersistentVolumeSpec{PersistentVolumeSource: v1.PersistentVolumeSource{ISCSI: &v1.ISCSIPersistentVolumeSource{}}}}}) {
    		t.Errorf("Expected true")
    	}
    }
    
    func TestGetAccessModes(t *testing.T) {
    	tmpDir, err := utiltesting.MkTmpdir("iscsi_test")
    	if err != nil {
    		t.Fatalf("error creating temp dir: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 16.4K bytes
    - Viewed (0)
  3. pkg/api/v1/persistentvolume/util_test.go

    		{Spec: corev1.PersistentVolumeSpec{
    			ClaimRef: &corev1.ObjectReference{Namespace: "claimrefns", Name: "claimrefname"},
    			PersistentVolumeSource: corev1.PersistentVolumeSource{
    				ISCSI: &corev1.ISCSIPersistentVolumeSource{
    					SecretRef: &corev1.SecretReference{
    						Name:      "Spec.PersistentVolumeSource.ISCSI.SecretRef",
    						Namespace: "iscsi"}}}}},
    		{Spec: corev1.PersistentVolumeSpec{
    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/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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/apis/core/v1/zz_generated.conversion.go

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

    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ISCSIPersistentVolumeSource.
    func (in *ISCSIPersistentVolumeSource) DeepCopy() *ISCSIPersistentVolumeSource {
    	if in == nil {
    		return nil
    	}
    	out := new(ISCSIPersistentVolumeSource)
    	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)
  10. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ISCSIPersistentVolumeSource.
    func (in *ISCSIPersistentVolumeSource) DeepCopy() *ISCSIPersistentVolumeSource {
    	if in == nil {
    		return nil
    	}
    	out := new(ISCSIPersistentVolumeSource)
    	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)
Back to top