Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for outerVolumeSpecName (0.61 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/reconciler/reconstruct.go

    				PodUID:              types.UID(volume.podName),
    				VolumeName:          volume.volumeName,
    				Mounter:             volume.mounter,
    				BlockVolumeMapper:   volume.blockVolumeMapper,
    				OuterVolumeSpecName: volume.outerVolumeSpecName,
    				VolumeGidVolume:     volume.volumeGidValue,
    				VolumeSpec:          volume.volumeSpec,
    				VolumeMountState:    operationexecutor.VolumeMountUncertain,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/operation_generator.go

    			PodName:             volumeToMount.PodName,
    			PodUID:              volumeToMount.Pod.UID,
    			VolumeName:          volumeToMount.VolumeName,
    			Mounter:             volumeMounter,
    			OuterVolumeSpecName: volumeToMount.OuterVolumeSpecName,
    			VolumeGidVolume:     volumeToMount.VolumeGidValue,
    			VolumeSpec:          volumeToMount.VolumeSpec,
    			VolumeMountState:    VolumeMounted,
    			SELinuxMountContext: volumeToMount.SELinuxLabel,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/metrics/metrics_test.go

    		PodName:             podName,
    		PodUID:              pod.UID,
    		VolumeName:          generatedVolumeName,
    		Mounter:             mounter,
    		BlockVolumeMapper:   mapper,
    		OuterVolumeSpecName: volumeSpec.Name(),
    		VolumeSpec:          volumeSpec,
    		VolumeMountState:    operationexecutor.VolumeMounted,
    	}
    	err = asw.AddPodToVolume(markVolumeOpts)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top