Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for outerVolumeSpecName (0.28 sec)

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

    	return struct {
    		VolumeName          string `json:"volumeName"`
    		PodName             string `json:"podName"`
    		VolumeSpecName      string `json:"volumeSpecName"`
    		OuterVolumeSpecName string `json:"outerVolumeSpecName"`
    		PodUID              string `json:"podUID"`
    		VolumeGIDValue      string `json:"volumeGIDValue"`
    		DevicePath          string `json:"devicePath"`
    		SeLinuxMountContext string `json:"seLinuxMountContext"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. 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)
  3. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	blockVolumeMapper := opts.BlockVolumeMapper
    	outerVolumeSpecName := opts.OuterVolumeSpecName
    	volumeGidValue := opts.VolumeGidVolume
    	volumeSpec := opts.VolumeSpec
    
    	podObj = mountedPod{
    		podName:                podName,
    		podUID:                 podUID,
    		mounter:                mounter,
    		blockVolumeMapper:      blockVolumeMapper,
    		outerVolumeSpecName:    outerVolumeSpecName,
    		volumeGidValue:         volumeGidValue,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  4. 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)
  5. pkg/volume/util/operationexecutor/operation_executor.go

    	// 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
    
    	// Pod to mount the volume to. Used to create NewMounter.
    	Pod *v1.Pod
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. 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)
  7. pkg/kubelet/volumemanager/cache/actual_state_of_world_test.go

    		PodName:             podName,
    		PodUID:              pod.UID,
    		VolumeName:          generatedVolumeName,
    		Mounter:             mounter,
    		BlockVolumeMapper:   mapper,
    		OuterVolumeSpecName: volumeSpec.Name(),
    		VolumeSpec:          volumeSpec,
    	}
    	err = asw.AddPodToVolume(markVolumeOpts)
    	// Assert
    	if err != nil {
    		t.Fatalf("AddPodToVolume failed. Expected: <no error> Actual: <%v>", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    }
    
    func getUniqueVolumeName(
    	podName volumetypes.UniquePodName,
    	outerVolumeSpecName string,
    	mountedVolumesForPod map[volumetypes.UniquePodName]map[string]cache.MountedVolume) (v1.UniqueVolumeName, bool) {
    	mountedVolumes, exist := mountedVolumesForPod[podName]
    	if !exist {
    		return "", false
    	}
    	mountedVolume, exist := mountedVolumes[outerVolumeSpecName]
    	if !exist {
    		return "", false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top