Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 996 for volumeID (0.13 sec)

  1. staging/src/k8s.io/api/storage/v1beta1/types.go

    // volume ownership and permissions of the volume to be mounted.
    // More modes may be added in the future.
    type FSGroupPolicy string
    
    const (
    	// ReadWriteOnceWithFSTypeFSGroupPolicy indicates that each volume will be examined
    	// to determine if the volume ownership and permissions
    	// should be modified. If a fstype is defined and the volume's access mode
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/generated.proto

      // When "true", the CSI driver must ensure that all volumes provided by this CSI
      // driver can be mounted separately with different `-o context` options. This is
      // typical for storage backends that provide volumes as filesystems on block
      // devices or as independent shared volumes.
      // Kubernetes will call NodeStage / NodePublish with "-o context=xyz" mount
      // option when mounting a ReadWriteOncePod volume used in Pod that has
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // When "true", the CSI driver must ensure that all volumes provided by this CSI
      // driver can be mounted separately with different `-o context` options. This is
      // typical for storage backends that provide volumes as filesystems on block
      // devices or as independent shared volumes.
      // Kubernetes will call NodeStage / NodePublish with "-o context=xyz" mount
      // option when mounting a ReadWriteOncePod volume used in Pod that has
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    	"count": "count indicates the maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is nil, then the supported number of volumes on this node is unbounded.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // When "true", the CSI driver must ensure that all volumes provided by this CSI
      // driver can be mounted separately with different `-o context` options. This is
      // typical for storage backends that provide volumes as filesystems on block
      // devices or as independent shared volumes.
      // Kubernetes will call NodeStage / NodePublish with "-o context=xyz" mount
      // option when mounting a ReadWriteOncePod volume used in Pod that has
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. pkg/volume/util/attach_limit.go

    	AzureVolumeLimitKey = "attachable-volumes-azure-disk"
    	// GCEVolumeLimitKey stores resource name that will store volume limits for GCE node
    	GCEVolumeLimitKey = "attachable-volumes-gce-pd"
    
    	// CinderVolumeLimitKey contains Volume limit key for Cinder
    	CinderVolumeLimitKey = "attachable-volumes-cinder"
    	// DefaultMaxCinderVolumes defines the maximum number of PD Volumes for Cinder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 17:25:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    				if len(allPods) != 2 {
    					return fmt.Errorf("expected 2 uncertain pods in asw got %d", len(allPods))
    				}
    				volumes := rcInstance.actualStateOfWorld.GetPossiblyMountedVolumesForPod("pod1")
    				if len(volumes) != 1 {
    					return fmt.Errorf("expected 1 uncertain volume in asw got %d", len(volumes))
    				}
    				// The volume should be marked as reconstructed in ASW
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/volume_manager.go

    	"k8s.io/kubernetes/pkg/kubelet/volumemanager/reconciler"
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/csimigration"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/operationexecutor"
    	"k8s.io/kubernetes/pkg/volume/util/types"
    	"k8s.io/kubernetes/pkg/volume/util/volumepathhandler"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/testing/testing.go

    			if reflect.DeepEqual(storedVolume, volume) {
    				logger.V(4).Info("Nothing updated volume", "volumeName", volume.Name)
    				return true, volume, nil
    			}
    			// Don't modify the existing object
    			volume = volume.DeepCopy()
    			volume.ResourceVersion = strconv.Itoa(storedVer + 1)
    		} else {
    			return true, nil, fmt.Errorf("cannot update volume %s: volume not found", volume.Name)
    		}
    
    		// Store the updated object to appropriate places.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/operationexecutor"
    	volumetypes "k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    // ActualStateOfWorld defines a set of thread-safe operations for the kubelet
    // volume manager's actual state of the world cache.
    // This cache contains volumes->pods i.e. a set of all volumes attached to this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
Back to top