Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 84 for fsType (0.17 sec)

  1. pkg/apis/core/v1/defaults.go

    	if obj.StorageMode == "" {
    		obj.StorageMode = "ThinProvisioned"
    	}
    	if obj.FSType == "" {
    		obj.FSType = "xfs"
    	}
    }
    
    func SetDefaults_ScaleIOPersistentVolumeSource(obj *v1.ScaleIOPersistentVolumeSource) {
    	if obj.StorageMode == "" {
    		obj.StorageMode = "ThinProvisioned"
    	}
    	if obj.FSType == "" {
    		obj.FSType = "xfs"
    	}
    }
    
    func SetDefaults_HostPathVolumeSource(obj *v1.HostPathVolumeSource) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pkg/apis/core/fuzzer/fuzzer.go

    			}
    			sio.FSType = c.RandString()
    			if sio.FSType == "" {
    				sio.FSType = "xfs"
    			}
    		},
    		func(sio *core.ScaleIOPersistentVolumeSource, c fuzz.Continue) {
    			sio.StorageMode = c.RandString()
    			if sio.StorageMode == "" {
    				sio.StorageMode = "ThinProvisioned"
    			}
    			sio.FSType = c.RandString()
    			if sio.FSType == "" {
    				sio.FSType = "xfs"
    			}
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. pkg/volume/local/local.go

    	err = dm.mounter.FormatAndMount(devicePath, deviceMountPath, fstype, mountOptions)
    	if err != nil {
    		if rmErr := os.Remove(deviceMountPath); rmErr != nil {
    			klog.Warningf("local: failed to remove %s: %v", deviceMountPath, rmErr)
    		}
    		return fmt.Errorf("local: failed to mount device %s at %s (fstype: %s), error %w", devicePath, deviceMountPath, fstype, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. pkg/volume/portworx/portworx.go

    	pwx, readOnly, err := getVolumeSource(spec)
    	if err != nil {
    		return nil, err
    	}
    
    	volumeID := pwx.VolumeID
    	fsType := pwx.FSType
    
    	return &portworxVolumeMounter{
    		portworxVolume: &portworxVolume{
    			podUID:          podUID,
    			volName:         spec.Name(),
    			volumeID:        volumeID,
    			manager:         manager,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. pkg/volume/iscsi/iscsi.go

    		//Add volume metrics
    		iscsiDisk.MetricsProvider = volume.NewMetricsStatFS(iscsiDisk.GetPath())
    	}
    	return &iscsiDiskMounter{
    		iscsiDisk:    iscsiDisk,
    		fsType:       fsType,
    		readOnly:     readOnly,
    		mounter:      &mount.SafeFormatAndMount{Interface: mounter, Exec: exec},
    		exec:         exec,
    		deviceUtil:   ioutil.NewDeviceHandler(ioutil.NewIOHandler()),
    		mountOptions: ioutil.MountOptionFromSpec(spec),
    	}, nil
    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/volume/fc/fc.go

    	if err != nil {
    		return nil, err
    	}
    
    	klog.V(5).Infof("fc: newMounterInternal volumeMode %s", volumeMode)
    	return &fcDiskMounter{
    		fcDisk:       fcDisk,
    		fsType:       fc.FSType,
    		volumeMode:   volumeMode,
    		readOnly:     readOnly,
    		mounter:      &mount.SafeFormatAndMount{Interface: mounter, Exec: exec},
    		deviceUtil:   util.NewDeviceHandler(util.NewIOHandler()),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. cmd/metacache-walk.go

    // On success a sorted meta cache stream will be returned.
    // Metadata has data stripped, if any.
    func (s *xlStorage) WalkDir(ctx context.Context, opts WalkDirOptions, wr io.Writer) (err error) {
    	legacyFS := !(s.fsType == xfs || s.fsType == ext4)
    
    	s.RLock()
    	legacy := s.formatLegacy
    	s.RUnlock()
    
    	// Verify if volume is valid and it exists.
    	volumeDir, err := s.getVolDir(opts.Bucket)
    	if err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. src/syscall/syscall_linux.go

    }
    
    //sys	mount(source string, target string, fstype string, flags uintptr, data *byte) (err error)
    
    func Mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
    	// Certain file systems get rather angry and EINVAL if you give
    	// them an empty string of data, rather than NULL.
    	if data == "" {
    		return mount(source, target, fstype, flags, nil)
    	}
    	datap, err := BytePtrFromString(data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1/types.go

    	// to determine if Kubernetes should modify ownership and permissions of the volume.
    	// With the default policy the defined fsGroup will only be applied
    	// if a fstype is defined and the volume's access mode contains ReadWriteOnce.
    	//
    	// +optional
    	FSGroupPolicy *FSGroupPolicy `json:"fsGroupPolicy,omitempty" protobuf:"bytes,5,opt,name=fsGroupPolicy"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. pkg/volume/emptydir/empty_dir_test.go

    		t.Errorf("Expected %v physicalMounter calls during setup, got %v", e, a)
    	} else if config.expectedSetupMounts == 1 &&
    		(log[0].Action != mount.FakeActionMount || (log[0].FSType != "tmpfs" && log[0].FSType != "hugetlbfs")) {
    		t.Errorf("Unexpected physicalMounter action during setup: %#v", log[0])
    	}
    	physicalMounter.ResetLog()
    
    	// Make an unmounter for the volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top