Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for outerVolumeSpecName (0.36 sec)

  1. pkg/kubelet/kubelet_volumes.go

    // The key in the map is the OuterVolumeSpecName (i.e. pod.Spec.Volumes[x].Name)
    func (kl *Kubelet) ListVolumesForPod(podUID types.UID) (map[string]volume.Volume, bool) {
    	volumesToReturn := make(map[string]volume.Volume)
    	podVolumes := kl.volumeManager.GetMountedVolumesForPod(
    		volumetypes.UniquePodName(podUID))
    	for outerVolumeSpecName, volume := range podVolumes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/volume_manager.go

    	// GetMountedVolumesForPod returns a VolumeMap containing the volumes
    	// referenced by the specified pod that are successfully attached and
    	// mounted. The key in the map is the OuterVolumeSpecName (i.e.
    	// pod.Spec.Volumes[x].Name). It returns an empty VolumeMap if pod has no
    	// volumes.
    	GetMountedVolumesForPod(podName types.UniquePodName) container.VolumeMap
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. 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
    	mountRequestTime time.Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top