Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 161 for iscsiInterface (0.47 sec)

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

    	IQN               *string                                 `json:"iqn,omitempty"`
    	Lun               *int32                                  `json:"lun,omitempty"`
    	ISCSIInterface    *string                                 `json:"iscsiInterface,omitempty"`
    	FSType            *string                                 `json:"fsType,omitempty"`
    	ReadOnly          *bool                                   `json:"readOnly,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/iscsipersistentvolumesource.go

    	IQN               *string                            `json:"iqn,omitempty"`
    	Lun               *int32                             `json:"lun,omitempty"`
    	ISCSIInterface    *string                            `json:"iscsiInterface,omitempty"`
    	FSType            *string                            `json:"fsType,omitempty"`
    	ReadOnly          *bool                              `json:"readOnly,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 7K bytes
    - Viewed (0)
  3. 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)
  4. pkg/volume/iscsi/iscsi_test.go

    	lun := spec.PersistentVolume.Spec.PersistentVolumeSource.ISCSI.Lun
    	if lun != 0 {
    		t.Errorf("wrong lun: %v", lun)
    	}
    	iface := spec.PersistentVolume.Spec.PersistentVolumeSource.ISCSI.ISCSIInterface
    	if iface != "default" {
    		t.Errorf("wrong ISCSIInterface: %v", iface)
    	}
    }
    
    func TestGetVolumeSpec_no_lun(t *testing.T) {
    	path := "plugins/kubernetes.io/iscsi/volumeDevices/iface-default/127.0.0.1:3260-iqn.2014-12.server:storage.target01"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 16.4K bytes
    - Viewed (0)
  5. 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) {
    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/volume/iscsi/iscsi.go

    			Lun:            int32(lun),
    			ISCSIInterface: iface,
    		},
    	)
    	klog.V(5).Infof("ConstructBlockVolumeSpec: TargetPortal: %v, IQN: %v, Lun: %v, ISCSIInterface: %v",
    		iscsiPV.Spec.PersistentVolumeSource.ISCSI.TargetPortal,
    		iscsiPV.Spec.PersistentVolumeSource.ISCSI.IQN,
    		iscsiPV.Spec.PersistentVolumeSource.ISCSI.Lun,
    		iscsiPV.Spec.PersistentVolumeSource.ISCSI.ISCSIInterface,
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PersistentVolume.json

            "namespace": "namespaceValue"
          },
          "readOnly": true
        },
        "iscsi": {
          "targetPortal": "targetPortalValue",
          "iqn": "iqnValue",
          "lun": 3,
          "iscsiInterface": "iscsiInterfaceValue",
          "fsType": "fsTypeValue",
          "readOnly": true,
          "portals": [
            "portalsValue"
          ],
          "chapAuthDiscovery": true,
          "chapAuthSession": true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.json

            "namespace": "namespaceValue"
          },
          "readOnly": true
        },
        "iscsi": {
          "targetPortal": "targetPortalValue",
          "iqn": "iqnValue",
          "lun": 3,
          "iscsiInterface": "iscsiInterfaceValue",
          "fsType": "fsTypeValue",
          "readOnly": true,
          "portals": [
            "portalsValue"
          ],
          "chapAuthDiscovery": true,
          "chapAuthSession": true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.yaml

        path: pathValue
        type: typeValue
      iscsi:
        chapAuthDiscovery: true
        chapAuthSession: true
        fsType: fsTypeValue
        initiatorName: initiatorNameValue
        iqn: iqnValue
        iscsiInterface: iscsiInterfaceValue
        lun: 3
        portals:
        - portalsValue
        readOnly: true
        secretRef:
          name: nameValue
          namespace: namespaceValue
        targetPortal: targetPortalValue
      local:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.VolumeAttachment.yaml

            type: typeValue
          iscsi:
            chapAuthDiscovery: true
            chapAuthSession: true
            fsType: fsTypeValue
            initiatorName: initiatorNameValue
            iqn: iqnValue
            iscsiInterface: iscsiInterfaceValue
            lun: 3
            portals:
            - portalsValue
            readOnly: true
            secretRef:
              name: nameValue
              namespace: namespaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top