Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for myMountPoints (0.09 sec)

  1. pkg/volume/util/nested_volumes.go

    		var allMountPoints []string // all mount points in this container
    		var myMountPoints []string  // mount points that match name
    		for _, vol := range container.VolumeMounts {
    			cleaned := filepath.Clean(vol.MountPath)
    			allMountPoints = append(allMountPoints, cleaned)
    			if vol.Name == name {
    				myMountPoints = append(myMountPoints, cleaned)
    			}
    		}
    		sort.Strings(allMountPoints)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 12:19:17 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top