Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hasUsedDownwardAPIFieldPathWithVolume (0.51 sec)

  1. pkg/api/pod/util.go

    	return false
    }
    
    func hasUsedDownwardAPIFieldPathWithPodSpec(podSpec *api.PodSpec, fieldPath string) bool {
    	if podSpec == nil {
    		return false
    	}
    	for _, vol := range podSpec.Volumes {
    		if hasUsedDownwardAPIFieldPathWithVolume(&vol, fieldPath) {
    			return true
    		}
    	}
    	for _, c := range podSpec.InitContainers {
    		if hasUsedDownwardAPIFieldPathWithContainer(&c, fieldPath) {
    			return true
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
Back to top