Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for podAllocated (0.08 sec)

  1. pkg/kubelet/userns/userns_manager.go

    		return
    	}
    
    	m.lock.Lock()
    	defer m.lock.Unlock()
    
    	m.releaseWithLock(podUID)
    }
    
    // podAllocated returns true if the pod is allocated, false otherwise.
    func (m *UsernsManager) podAllocated(podUID types.UID) bool {
    	if !utilfeature.DefaultFeatureGate.Enabled(features.UserNamespacesSupport) {
    		return false
    	}
    
    	m.lock.Lock()
    	defer m.lock.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top