Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isCached (0.17 sec)

  1. pkg/apis/core/validation/validation.go

    	if _, ok := volumes[name]; ok {
    		return true
    	}
    	return false
    }
    
    // isMatched checks whether the volume with the given name is used by a
    // container and if so, if it involves a PVC.
    func isMatchedDevice(name string, volumes map[string]core.VolumeSource) (isMatched bool, isPVC bool) {
    	if source, ok := volumes[name]; ok {
    		if source.PersistentVolumeClaim != nil ||
    			source.Ephemeral != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top