Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Gid (0.06 sec)

  1. CHANGELOG/CHANGELOG-1.13.md

    - Upgrade...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	for _, msg := range validation.IsValidGroupID(linuxContainerUser.GID) {
    		allErrors = append(allErrors, field.Invalid(fldPath.Child("gid"), linuxContainerUser.GID, msg))
    	}
    	for g, gid := range linuxContainerUser.SupplementalGroups {
    		for _, msg := range validation.IsValidGroupID(gid) {
    			allErrors = append(allErrors, field.Invalid(fldPath.Child("supplementalGroups").Index(g), gid, msg))
    		}
    	}
    	return allErrors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    type LinuxContainerUser struct {
    	// UID is the primary uid initially attached to the first process in the container
    	UID int64
    	// GID is the primary gid initially attached to the first process in the container
    	GID int64
    	// SupplementalGroups are the supplemental groups initially attached to the first process in the container
    	SupplementalGroups []int64
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":                   "LinuxContainerUser represents user identity information in Linux containers",
    	"uid":                "UID is the primary uid initially attached to the first process in the container",
    	"gid":                "GID is the primary gid initially attached to the first process in the container",
    	"supplementalGroups": "SupplementalGroups are the supplemental groups initially attached to the first process in the container",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// UID is the primary uid initially attached to the first process in the container
    	UID int64 `json:"uid" protobuf:"varint,1,name=uid"`
    	// GID is the primary gid initially attached to the first process in the container
    	GID int64 `json:"gid" protobuf:"varint,2,name=gid"`
    	// SupplementalGroups are the supplemental groups initially attached to the first process in the container
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

    message LinuxContainerUser {
      // UID is the primary uid initially attached to the first process in the container
      optional int64 uid = 1;
    
      // GID is the primary gid initially attached to the first process in the container
      optional int64 gid = 2;
    
      // SupplementalGroups are the supplemental groups initially attached to the first process in the container
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Sec  int64
    	Nsec uint32
    	_    int32
    }
    
    type Statx_t struct {
    	Mask             uint32
    	Blksize          uint32
    	Attributes       uint64
    	Nlink            uint32
    	Uid              uint32
    	Gid              uint32
    	Mode             uint16
    	_                [1]uint16
    	Ino              uint64
    	Size             uint64
    	Blocks           uint64
    	Attributes_mask  uint64
    	Atime            StatxTimestamp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // for that container.
      // Note that this field cannot be set when spec.os.name is windows.
      // +optional
      optional int64 runAsUser = 2;
    
      // The GID to run the entrypoint of the container process.
      // Uses runtime default if unset.
      // May also be set in SecurityContext.  If set in both SecurityContext and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.10.md

    * Set fsGroup by securityContext.fsGroup in azure file. However,f user both sets gid=xxx in mountOptions in azure storage class and securityContext.fsGroup, gid=xxx setting in mountOptions takes precedence. ([#58316](https://github.com/kubernetes/kubernetes/pull/58316), [@andyzhangx](https://github.com/andyzhangx))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  10. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_LinuxContainerUser_To_core_LinuxContainerUser(in *v1.LinuxContainerUser, out *core.LinuxContainerUser, s conversion.Scope) error {
    	out.UID = in.UID
    	out.GID = in.GID
    	out.SupplementalGroups = *(*[]int64)(unsafe.Pointer(&in.SupplementalGroups))
    	return nil
    }
    
    // Convert_v1_LinuxContainerUser_To_core_LinuxContainerUser is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
Back to top