Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ValidatePathNoBacksteps (0.15 sec)

  1. pkg/kubelet/kubelet_pods.go

    			}
    		}
    
    		if subPath != "" {
    			if utilfs.IsAbs(subPath) {
    				return nil, cleanupAction, fmt.Errorf("error SubPath `%s` must not be an absolute path", subPath)
    			}
    
    			err = volumevalidation.ValidatePathNoBacksteps(subPath)
    			if err != nil {
    				return nil, cleanupAction, fmt.Errorf("unable to provision SubPath `%s`: %v", subPath, err)
    			}
    
    			volumePath := hostPath
    			hostPath = filepath.Join(volumePath, subPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top