Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for fsGroup (0.21 sec)

  1. pkg/apis/core/types.go

    	//
    	// 1. The owning GID will be the FSGroup
    	// 2. The setgid bit is set (new files created in the volume will be owned by FSGroup)
    	// 3. The permission bits are OR'd with rw-rw----
    	//
    	// If unset, the Kubelet will not modify the ownership and permissions of any volume.
    	// Note that this field cannot be set when spec.os.name is windows.
    	// +optional
    	FSGroup *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)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      //
      // 1. The owning GID will be the FSGroup
      // 2. The setgid bit is set (new files created in the volume will be owned by FSGroup)
      // 3. The permission bits are OR'd with rw-rw----
      //
      // If unset, the Kubelet will not modify the ownership and permissions of any volume.
      // Note that this field cannot be set when spec.os.name is windows.
      // +optional
      optional int64 fsGroup = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"fsGroup":                  "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw ",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	//
    	// 1. The owning GID will be the FSGroup
    	// 2. The setgid bit is set (new files created in the volume will be owned by FSGroup)
    	// 3. The permission bits are OR'd with rw-rw----
    	//
    	// If unset, the Kubelet will not modify the ownership and permissions of any volume.
    	// Note that this field cannot be set when spec.os.name is windows.
    	// +optional
    	FSGroup *int64 `json:"fsGroup,omitempty" protobuf:"varint,5,opt,name=fsGroup"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      //
      // 1. The owning GID will be the FSGroup
      // 2. The setgid bit is set (new files created in the volume will be owned by FSGroup)
      // 3. The permission bits are OR'd with rw-rw----
      //
      // If unset, the Kubelet will not modify the ownership and permissions of any volume.
      // Note that this field cannot be set when spec.os.name is windows.
      // +optional
      optional int64 fsGroup = 5;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "fsGroup": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.20.md

        - [CSI Volume Snapshot graduates to General Availability](#csi-volume-snapshot-graduates-to-general-availability)
        - [Non-recursive Volume Ownership (FSGroup) graduates to Beta](#non-recursive-volume-ownership-fsgroup-graduates-to-beta)
        - [CSIDriver policy for FSGroup graduates to Beta](#csidriver-policy-for-fsgroup-graduates-to-beta)
        - [Security Improvements for CSI Drivers (Alpha)](#security-improvements-for-csi-drivers-alpha)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.13.md

    - PodSecurityPolicy objects now support a `MayRunAs` rule for `fsGroup` and `supplementalGroups` options. This allows specifying ranges of allowed GIDs for pods/containers without forcing a default GID the way `MustRunAs` does. This means that a container to which such a policy applies to won't use any fsGroup/supplementalGroup GID if not explicitly specified, yet a specified GID must still fall in the GID range according to the policy....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    
    	if securityContext != nil {
    		if securityContext.FSGroup != nil {
    			for _, msg := range validation.IsValidGroupID(*securityContext.FSGroup) {
    				allErrs = append(allErrs, field.Invalid(fldPath.Child("fsGroup"), *(securityContext.FSGroup), msg))
    			}
    		}
    		if securityContext.RunAsUser != 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)
  10. 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)
Back to top