Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for volumeName (0.26 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconstruct.go

    				klog.ErrorS(err, "Could not find device mount path for volume", "volumeName", gvl.volumeName)
    				continue
    			}
    			err = rc.actualStateOfWorld.MarkDeviceAsUncertain(gvl.volumeName, gvl.devicePath, deviceMountPath, seLinuxMountContext)
    			if err != nil {
    				klog.ErrorS(err, "Could not mark device is uncertain to actual state of world", "volumeName", gvl.volumeName, "deviceMountPath", deviceMountPath)
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. pkg/controller/volume/expand/expand_controller_test.go

    			Driver:       pluginName,
    			VolumeHandle: volumeName,
    		}
    	} else {
    		pv.Spec.PersistentVolumeSource.AWSElasticBlockStore = &v1.AWSElasticBlockStoreVolumeSource{
    			VolumeID: volumeName,
    			FSType:   "ext4",
    		}
    	}
    	return pv
    }
    
    func getFakePersistentVolumeClaim(pvcName, volumeName, statusSize, requestSize string, uid types.UID) *v1.PersistentVolumeClaim {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/metrics/metrics_test.go

    	dsw := cache.NewDesiredStateOfWorld(fakeVolumePluginMgr)
    	asw := cache.NewActualStateOfWorld(fakeVolumePluginMgr)
    	podName := "pod-uid"
    	volumeName := v1.UniqueVolumeName("volume-name")
    	volumeSpec := controllervolumetesting.GetTestVolumeSpec(string(volumeName), volumeName)
    	nodeName := k8stypes.NodeName("node-name")
    
    	dsw.AddNode(nodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/internal/filepathlite/path.go

    // Dir is filepath.Dir.
    func Dir(path string) string {
    	vol := VolumeName(path)
    	i := len(path) - 1
    	for i >= len(vol) && !IsPathSeparator(path[i]) {
    		i--
    	}
    	dir := Clean(path[len(vol) : i+1])
    	if dir == "." && len(vol) > 2 {
    		// must be UNC
    		return vol
    	}
    	return vol + dir
    }
    
    // VolumeName is filepath.VolumeName.
    func VolumeName(path string) string {
    	return FromSlash(path[:volumeNameLen(path)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. 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)
  6. pkg/volume/flexvolume/plugin.go

    	return true, nil
    }
    
    // ConstructVolumeSpec is part of the volume.AttachableVolumePlugin interface.
    func (plugin *flexVolumePlugin) ConstructVolumeSpec(volumeName, mountPath string) (volume.ReconstructedVolume, error) {
    	flexVolume := &api.Volume{
    		Name: volumeName,
    		VolumeSource: api.VolumeSource{
    			FlexVolume: &api.FlexVolumeSource{
    				Driver: plugin.driverName,
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml

              name: nameValue
              namespace: namespaceValue
            sslEnabled: true
            storageMode: storageModeValue
            storagePool: storagePoolValue
            system: systemValue
            volumeName: volumeNameValue
          storageClassName: storageClassNameValue
          storageos:
            fsType: fsTypeValue
            readOnly: true
            secretRef:
              apiVersion: apiVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.yaml

        readOnly: true
        secretRef:
          name: nameValue
          namespace: namespaceValue
        sslEnabled: true
        storageMode: storageModeValue
        storagePool: storagePoolValue
        system: systemValue
        volumeName: volumeNameValue
      storageClassName: storageClassNameValue
      storageos:
        fsType: fsTypeValue
        readOnly: true
        secretRef:
          apiVersion: apiVersionValue
          fieldPath: fieldPathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.VolumeAttachment.yaml

              name: nameValue
              namespace: namespaceValue
            sslEnabled: true
            storageMode: storageModeValue
            storagePool: storagePoolValue
            system: systemValue
            volumeName: volumeNameValue
          storageClassName: storageClassNameValue
          storageos:
            fsType: fsTypeValue
            readOnly: true
            secretRef:
              apiVersion: apiVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top