Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 222 for volumeID (0.15 sec)

  1. pkg/controller/volume/persistentvolume/pv_controller_test.go

    			expectedVolumes: newVolumeArray("volume5-3", "10Gi", "uid5-3", "claim5-3", v1.VolumeReleased, v1.PersistentVolumeReclaimRetain, classEmpty, volume.AnnBoundByController),
    			initialClaims:   newClaimArray("claim5-3", "uid5-3", "1Gi", "volume5-3", v1.ClaimBound, nil, volume.AnnBoundByController, volume.AnnBindCompleted),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    						podName:        volumetypes.UniquePodName(podName),
    						volumeSpecName: volumeName,
    						volumePath:     volumePath,
    						pluginName:     unescapePluginName,
    						volumeMode:     volumeMode,
    					})
    				}
    			}
    		}
    	}
    	for _, volume := range volumes {
    		klog.V(4).InfoS("Get volume from pod directory", "path", podDir, "volume", volume)
    	}
    	return volumes, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_executor.go

    	// VolumeSpec is a volume spec containing the specification for the volume
    	// that should be mounted. Used to create NewMounter. Used to generate
    	// InnerVolumeSpecName.
    	VolumeSpec *volume.Spec
    
    	// outerVolumeSpecName is the podSpec.Volume[x].Name of the volume. If the
    	// volume was referenced through a persistent volume claim, this contains
    	// the podSpec.Volume[x].Name of the persistent volume claim.
    	OuterVolumeSpecName string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/controlplane/volumes.go

    type controlPlaneHostPathMounts struct {
    	// volumes is a nested map that forces a unique volumes. The outer map's
    	// keys are a string that should specify the target component to add the
    	// volume to. The values (inner map) of the outer map are maps with string
    	// keys and v1.Volume values. The inner map's key should specify the volume
    	// name.
    	volumes map[string]map[string]v1.Volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	// PVC volumes it is from the dereferenced PV object.
    	volumeSpec *volume.Spec
    
    	// outerVolumeSpecName is the volume.Spec.Name() of the volume as referenced
    	// directly in the pod. If the volume was referenced through a persistent
    	// volume claim, this contains the volume.Spec.Name() of the persistent
    	// volume claim
    	outerVolumeSpecName string
    	// mountRequestTime stores time at which mount was requested
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1/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: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top