Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getExtraSupplementalGid (0.16 sec)

  1. pkg/kubelet/volumemanager/volume_manager.go

    	mounts, devices, _ := util.GetPodVolumeNames(pod)
    	return mounts.Union(devices).UnsortedList()
    }
    
    // getExtraSupplementalGid returns the value of an extra supplemental GID as
    // defined by an annotation on a volume and a boolean indicating whether the
    // volume defined a GID that the pod doesn't already request.
    func getExtraSupplementalGid(volumeGidValue string, pod *v1.Pod) (int64, bool) {
    	if volumeGidValue == "" {
    		return 0, false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top