Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 166 for initiatorName (0.21 sec)

  1. pkg/volume/iscsi/iscsi_util_test.go

    		"# BEGIN RECORD 2.0-873\n" +
    			"iface.iscsi_ifacename = default\n" +
    			"iface.transport_name = tcp\n" +
    			"iface.initiatorname = <empty>\n" +
    			"# END RECORD",
    		"# BEGIN RECORD 2.0-873\n" +
    			"iface.iscsi_ifacename = default\n" +
    			"iface.transport_name = cxgb4i\n" +
    			"iface.initiatorname = <empty>\n" +
    			"# END RECORD",
    		"# BEGIN RECORD 2.0-873\n" +
    			"iface.iscsi_ifacename = default\n" +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 09:43:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/iscsivolumesource.go

    	SessionCHAPAuth   *bool                                   `json:"chapAuthSession,omitempty"`
    	SecretRef         *LocalObjectReferenceApplyConfiguration `json:"secretRef,omitempty"`
    	InitiatorName     *string                                 `json:"initiatorName,omitempty"`
    }
    
    // ISCSIVolumeSourceApplyConfiguration constructs an declarative configuration of the ISCSIVolumeSource type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/iscsipersistentvolumesource.go

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

    		return err
    	}
    
    	var bkpPortal []string
    	var volName, iqn, iface, initiatorName string
    	found := true
    
    	// load iscsi disk config from json file
    	if err := util.loadISCSI(c.iscsiDisk, mntPath); err == nil {
    		bkpPortal, iqn, iface, volName = c.iscsiDisk.Portals, c.iscsiDisk.Iqn, c.iscsiDisk.Iface, c.iscsiDisk.VolName
    		initiatorName = c.iscsiDisk.InitiatorName
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  5. pkg/volume/iscsi/iscsi.go

    		return nil, err
    	}
    
    	var initiatorName string
    	if initiatorNamePtr != nil {
    		initiatorName = *initiatorNamePtr
    	}
    	chapDiscovery, err := getISCSIDiscoveryCHAPInfo(spec)
    	if err != nil {
    		return nil, err
    	}
    	chapSession, err := getISCSISessionCHAPInfo(spec)
    	if err != nil {
    		return nil, err
    	}
    
    	initIface := iface
    	if initiatorName != "" {
    		iface = bkportal[0] + ":" + spec.Name()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.yaml

        path: pathValue
        readOnly: true
      hostPath:
        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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PersistentVolume.json

    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

    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/v1.29.0/storage.k8s.io.v1.VolumeAttachment.json

              "chapAuthDiscovery": true,
              "chapAuthSession": true,
              "secretRef": {
                "name": "nameValue",
                "namespace": "namespaceValue"
              },
              "initiatorName": "initiatorNameValue"
            },
            "cinder": {
              "volumeID": "volumeIDValue",
              "fsType": "fsTypeValue",
              "readOnly": true,
              "secretRef": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. pkg/volume/iscsi/disk_manager.go

    		return err
    	}
    	// Perform a bind mount to the full path to allow duplicate mounts of the same disk.
    	options := []string{"bind"}
    	if b.readOnly {
    		options = append(options, "ro")
    	}
    	if b.iscsiDisk.InitiatorName != "" {
    		// new iface name is <target portal>:<volume name>
    		b.iscsiDisk.Iface = b.iscsiDisk.Portals[0] + ":" + b.iscsiDisk.VolName
    	}
    	globalPDPath := manager.MakeGlobalPDName(*b.iscsiDisk)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top