Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 158 for fsType (0.13 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.yaml

          volumes:
          - awsElasticBlockStore:
              fsType: fsTypeValue
              partition: 3
              readOnly: true
              volumeID: volumeIDValue
            azureDisk:
              cachingMode: cachingModeValue
              diskName: diskNameValue
              diskURI: diskURIValue
              fsType: fsTypeValue
              kind: kindValue
              readOnly: true
            azureFile:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  2. pkg/volume/iscsi/iscsi_test.go

    	if err != nil {
    		return "", err
    	}
    	// Simulate the global mount so that the fakeMounter returns the
    	// expected number of mounts for the attached disk.
    	b.mounter.MountSensitiveWithoutSystemd(globalPath, globalPath, b.fsType, nil, nil)
    
    	return "/dev/sdb", nil
    }
    
    func (fake *fakeDiskManager) DetachDisk(c iscsiDiskUnmounter, mntPath string) error {
    	globalPath := c.manager.MakeGlobalPDName(*c.iscsiDisk)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 16.4K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_mounter.go

    	)
    
    	switch {
    	case volSrc != nil:
    		if c.volumeLifecycleMode != storage.VolumeLifecycleEphemeral {
    			return fmt.Errorf("unexpected volume mode: %s", c.volumeLifecycleMode)
    		}
    		if volSrc.FSType != nil {
    			fsType = *volSrc.FSType
    		}
    
    		volAttribs = volSrc.VolumeAttributes
    
    		if volSrc.NodePublishSecretRef != nil {
    			secretName := volSrc.NodePublishSecretRef.Name
    			ns := c.pod.Namespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. 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)
  5. pkg/controller/volume/attachdetach/util/util_test.go

    					Volumes: []v1.Volume{
    						{
    							Name: migratedVolume,
    							VolumeSource: v1.VolumeSource{
    								GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    									PDName:    "test-disk",
    									FSType:    "ext4",
    									Partition: 0,
    									ReadOnly:  false,
    								},
    							},
    						},
    					},
    				},
    			},
    			wantPersistentVolume: &v1.PersistentVolume{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 05:42:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    				CephMonitors: []string{"a", "b"},
    				RBDPool:      "foo",
    				RBDImage:     "bar",
    				FSType:       "ext4",
    			},
    		},
    	}
    	volState2 := v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			RBD: &v1.RBDVolumeSource{
    				CephMonitors: []string{"c", "d"},
    				RBDPool:      "foo",
    				RBDImage:     "bar",
    				FSType:       "ext4",
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
Back to top