Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for gidMax (0.14 sec)

  1. CHANGELOG/CHANGELOG-1.6.md

    #### GlusterFS
    * The glusterfs dynamic volume provisioner will now choose a unique GID for new persistent volumes from a range that can be configured in the storage class with the "gidMin" and "gidMax" parameters. The default range is 2000 - 2147483647 (max int32). ([#37886](https://github.com/kubernetes/kubernetes/pull/37886), [@obnoxxx](https://github.com/obnoxxx))
    
    #### Photon
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  2. src/syscall/exec_linux.go

    				goto childerror
    			}
    			pid, _, err1 = RawSyscall(SYS_WRITE, fd1, uintptr(unsafe.Pointer(&gidmap[0])), uintptr(len(gidmap)))
    			if err1 != 0 {
    				goto childerror
    			}
    			if _, _, err1 = RawSyscall(SYS_CLOSE, fd1, 0, 0); err1 != 0 {
    				goto childerror
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. pkg/kube/inject/inject.go

    	if namespace == nil {
    		return
    	}
    
    	// Check for OpenShift specifics and returns the max number in the range specified in the namespace annotation
    	if _, uidMax, err := getPreallocatedUIDRange(namespace); err == nil {
    		uid = *uidMax
    	}
    	if groups, err := getPreallocatedSupplementalGroups(namespace); err == nil && len(groups) > 0 {
    		gid = groups[0].Max
    	}
    
    	return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (1)
Back to top