Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 3600508b400105e210000900000490000 (0.24 sec)

  1. pkg/volume/fc/fc_util_test.go

    	case "/sys/block/":
    		f := &fakeFileInfo{
    			name: "dm-1",
    		}
    		return []os.FileInfo{f}, nil
    	case "/dev/disk/by-id/":
    		f := &fakeFileInfo{
    			name: "scsi-3600508b400105e210000900000490000",
    		}
    		return []os.FileInfo{f}, nil
    	}
    	return nil, nil
    }
    
    func (handler *fakeIOHandler) Lstat(name string) (os.FileInfo, error) {
    	return nil, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 23 08:36:01 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  2. pkg/volume/fc/fc_test.go

    }
    
    func TestPluginVolumeWWIDs(t *testing.T) {
    	vol := &v1.Volume{
    		Name: "vol1",
    		VolumeSource: v1.VolumeSource{
    			FC: &v1.FCVolumeSource{
    				WWIDs:  []string{"3600508b400105e210000900000490000"},
    				FSType: "ext4",
    			},
    		},
    	}
    	doTestPlugin(t, volume.NewSpecFromVolume(vol))
    }
    
    func TestPluginPersistentVolumeWWIDs(t *testing.T) {
    	fs := v1.PersistentVolumeFilesystem
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 14.1K bytes
    - Viewed (0)
  3. pkg/volume/fc/fc_util.go

    func findDiskWWIDs(wwid string, io ioHandler, deviceUtil volumeutil.DeviceUtil) (string, string) {
    	// Example wwid format:
    	//   3600508b400105e210000900000490000
    	//   <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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  4. pkg/volume/fc/fc.go

    	// globalMapPathUUID examples:
    	//   wwn+lun: plugins/kubernetes.io/fc/volumeDevices/50060e801049cfd1-lun-0/{pod uuid}
    	//   wwid: plugins/kubernetes.io/fc/volumeDevices/3600508b400105e210000900000490000/{pod uuid}
    	globalPDPath := filepath.Dir(globalMapPathUUID)
    	// Create volume from wwn+lun or wwid
    	wwns, lun, wwids, err := parsePDName(globalPDPath)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top