Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 259 for scsi (0.11 sec)

  1. pkg/volume/fc/fc_util.go

    	//   <VENDOR NAME> <IDENTIFIER NUMBER>
    	// Example of symlink under by-id:
    	//   /dev/by-id/scsi-3600508b400105e210000900000490000
    	//   /dev/by-id/scsi-<VENDOR NAME>_<IDENTIFIER NUMBER>
    	// The wwid could contain white space and it will be replaced
    	// underscore when wwid is exposed under /dev/by-id.
    
    	fcPath := "scsi-" + wwid
    	devID := byID
    	if dirs, err := io.ReadDir(devID); err == nil {
    		for _, f := range dirs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  2. pkg/volume/iscsi/iscsi_util.go

    func (util *ISCSIUtil) MakeGlobalPDName(iscsi iscsiDisk) string {
    	return makePDNameInternal(iscsi.plugin.host, iscsi.Portals[0], iscsi.Iqn, iscsi.Lun, iscsi.Iface)
    }
    
    // MakeGlobalVDPDName returns path of global volume device plugin dir
    func (util *ISCSIUtil) MakeGlobalVDPDName(iscsi iscsiDisk) string {
    	return makeVDPDNameInternal(iscsi.plugin.host, iscsi.Portals[0], iscsi.Iqn, iscsi.Lun, iscsi.Iface)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  3. cluster/gce/config-default.sh

    KUBE_CREATE_NODES="${KUBE_CREATE_NODES:-true}"
    
    # An extension to local SSDs allowing users to specify block/fs and SCSI/NVMe devices
    # Format of this variable will be "#,scsi/nvme,block/fs" you can specify multiple
    # configurations by separating them by a semi-colon ex. "2,scsi,fs;1,nvme,block"
    # is a request for 2 SCSI formatted and mounted SSDs and 1 NVMe block device SSD.
    NODE_LOCAL_SSDS_EXT=${NODE_LOCAL_SSDS_EXT:-}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. cluster/gce/config-test.sh

    KUBE_CREATE_NODES=${KUBE_CREATE_NODES:-true}
    
    # An extension to local SSDs allowing users to specify block/fs and SCSI/NVMe devices
    # Format of this variable will be "#,scsi/nvme,block/fs" you can specify multiple
    # configurations by separating them by a semi-colon ex. "2,scsi,fs;1,nvme,block"
    # is a request for 2 SCSI formatted and mounted SSDs and 1 NVMe block device SSD.
    NODE_LOCAL_SSDS_EXT=${NODE_LOCAL_SSDS_EXT:-}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. pkg/volume/iscsi/iscsi.go

    	} else if spec.PersistentVolume != nil &&
    		spec.PersistentVolume.Spec.ISCSI != nil {
    		return spec.PersistentVolume.Spec.ISCSI.TargetPortal, spec.PersistentVolume.Spec.ISCSI.Portals, spec.PersistentVolume.Spec.ISCSI.IQN, spec.PersistentVolume.Spec.ISCSI.Lun, nil
    	}
    
    	return "", nil, "", 0, fmt.Errorf("Spec does not reference an ISCSI volume type")
    }
    
    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. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    		return fmt.Errorf("converting volume(%s) from inline to csi: %w", vol.Name, err)
    	}
    	driverName, err := pl.translator.GetCSINameFromInTreeName(inTreeProvisionerName)
    	if err != nil {
    		return fmt.Errorf("looking up CSI driver name for provisioner %s: %w", inTreeProvisionerName, err)
    	}
    	// TranslateInTreeInlineVolumeToCSI should translate inline volume to CSI. If it is not set,
    	// the volume does not support inline. Skip the count.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. pkg/api/v1/persistentvolume/util_test.go

    		"claimrefns/Spec.PersistentVolumeSource.ISCSI.SecretRef",
    		"iscsi/Spec.PersistentVolumeSource.ISCSI.SecretRef",
    
    		"storageosns/Spec.PersistentVolumeSource.StorageOS.SecretRef",
    
    		"csi/Spec.PersistentVolumeSource.CSI.ControllerPublishSecretRef",
    		"csi/Spec.PersistentVolumeSource.CSI.NodePublishSecretRef",
    		"csi/Spec.PersistentVolumeSource.CSI.NodeStageSecretRef",
    		"csi/Spec.PersistentVolumeSource.CSI.ControllerExpandSecretRef",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumesource.go

    	NFS                  *NFSVolumeSourceApplyConfiguration                  `json:"nfs,omitempty"`
    	RBD                  *RBDPersistentVolumeSourceApplyConfiguration        `json:"rbd,omitempty"`
    	ISCSI                *ISCSIPersistentVolumeSourceApplyConfiguration      `json:"iscsi,omitempty"`
    	Cinder               *CinderPersistentVolumeSourceApplyConfiguration     `json:"cinder,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 13.5K bytes
    - Viewed (0)
  9. pkg/api/v1/pod/util.go

    				return false
    			}
    		case source.ISCSI != nil:
    			if source.ISCSI.SecretRef != nil && !visitor(source.ISCSI.SecretRef.Name) {
    				return false
    			}
    		case source.StorageOS != nil:
    			if source.StorageOS.SecretRef != nil && !visitor(source.StorageOS.SecretRef.Name) {
    				return false
    			}
    		case source.CSI != nil:
    			if source.CSI.NodePublishSecretRef != nil && !visitor(source.CSI.NodePublishSecretRef.Name) {
    				return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 17:18:04 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumespec.go

    	b.RBD = value
    	return b
    }
    
    // WithISCSI sets the ISCSI field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the ISCSI field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 16.6K bytes
    - Viewed (0)
Back to top