Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 209 for volume_mode (0.17 sec)

  1. pkg/volume/metrics_block.go

    // going through specialized APIs.
    func (mb *metricsBlock) GetMetrics() (*Metrics, error) {
    	startTime := time.Now()
    	defer servermetrics.CollectVolumeStatCalDuration("block", startTime)
    
    	// TODO: Windows does not yet support VolumeMode=Block
    	if runtime.GOOS == "windows" {
    		return nil, NewNotImplementedError("Windows does not support Block volumes")
    	}
    
    	metrics := &Metrics{Time: metav1.Now()}
    	if mb.device == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 14:33:37 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_util.go

    	return context.WithTimeout(ctx, timeout)
    }
    
    // getPodInfoAttrs returns pod info for NodePublish
    func getPodInfoAttrs(pod *api.Pod, volumeMode storage.VolumeLifecycleMode) map[string]string {
    	attrs := map[string]string{
    		"csi.storage.k8s.io/pod.name":            pod.Name,
    		"csi.storage.k8s.io/pod.namespace":       pod.Namespace,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 17:14:00 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.yaml

          resourceVersion: resourceVersionValue
          uid: uidValue
        volumeName: volumeNameValue
        volumeNamespace: volumeNamespaceValue
      volumeAttributesClassName: volumeAttributesClassNameValue
      volumeMode: volumeModeValue
      vsphereVolume:
        fsType: fsTypeValue
        storagePolicyID: storagePolicyIDValue
        storagePolicyName: storagePolicyNameValue
        volumePath: volumePathValue
    status:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. pkg/volume/csi/expander.go

    	}
    	fsVolume, err := util.CheckVolumeModeFilesystem(resizeOptions.VolumeSpec)
    	if err != nil {
    		return false, errors.New(log("Expander.NodeExpand failed to check VolumeMode of source: %v", err))
    	}
    
    	return c.nodeExpandWithClient(resizeOptions, csiSource, csClient, fsVolume)
    }
    
    func (c *csiPlugin) nodeExpandWithClient(
    	resizeOptions volume.NodeResizeOptions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PersistentVolume.yaml

          resourceVersion: resourceVersionValue
          uid: uidValue
        volumeName: volumeNameValue
        volumeNamespace: volumeNamespaceValue
      volumeAttributesClassName: volumeAttributesClassNameValue
      volumeMode: volumeModeValue
      vsphereVolume:
        fsType: fsTypeValue
        storagePolicyID: storagePolicyIDValue
        storagePolicyName: storagePolicyNameValue
        volumePath: volumePathValue
    status:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.VolumeAttachment.yaml

              uid: uidValue
            volumeName: volumeNameValue
            volumeNamespace: volumeNamespaceValue
          volumeAttributesClassName: volumeAttributesClassNameValue
          volumeMode: volumeModeValue
          vsphereVolume:
            fsType: fsTypeValue
            storagePolicyID: storagePolicyIDValue
            storagePolicyName: storagePolicyNameValue
            volumePath: volumePathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1beta1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top