Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for supplementalGroupsPolicy (0.4 sec)

  1. pkg/apis/core/types.go

    	// Note that this field cannot be set when spec.os.name is windows.
    	// TODO: update the default value to "Merge" when spec.os.name is not windows in v1.34
    	// +featureGate=SupplementalGroupsPolicy
    	// +optional
    	SupplementalGroupsPolicy *SupplementalGroupsPolicy
    	// 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
    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. staging/src/k8s.io/api/core/v1/types.go

    	// (Alpha) Using the field requires the SupplementalGroupsPolicy feature gate to be enabled
    	// and the container runtime must implement support for this feature.
    	// Note that this field cannot be set when spec.os.name is windows.
    	// TODO: update the default value to "Merge" when spec.os.name is not windows in v1.34
    	// +featureGate=SupplementalGroupsPolicy
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    func validateSupplementalGroupsPolicy(supplementalGroupsPolicy *core.SupplementalGroupsPolicy, fldPath *field.Path) field.ErrorList {
    	allErrors := field.ErrorList{}
    	if !validSupplementalGroupsPolicies.Has(*supplementalGroupsPolicy) {
    		allErrors = append(allErrors, field.NotSupported(fldPath, supplementalGroupsPolicy, sets.List(validSupplementalGroupsPolicies)))
    	}
    	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)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // and the container runtime must implement support for this feature.
      // Note that this field cannot be set when spec.os.name is windows.
      // TODO: update the default value to "Merge" when spec.os.name is not windows in v1.34
      // +featureGate=SupplementalGroupsPolicy
      // +optional
      optional string supplementalGroupsPolicy = 12;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    addition to the container's primary GID and fsGroup (if specified).  If the SupplementalGroupsPolicy feature is enabled, the supplementalGroupsPolicy field determines whether these are in addition to or instead of any group memberships defined in the container image. If unspecified, no additional groups are added, though group memberships defined in the container image may still be used, depending on the supplementalGroupsPolicy field. Note that this field cannot be set when spec.os.name is windows.",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/zz_generated.conversion.go

    	out.RunAsNonRoot = (*bool)(unsafe.Pointer(in.RunAsNonRoot))
    	out.SupplementalGroups = *(*[]int64)(unsafe.Pointer(&in.SupplementalGroups))
    	out.SupplementalGroupsPolicy = (*core.SupplementalGroupsPolicy)(unsafe.Pointer(in.SupplementalGroupsPolicy))
    	out.FSGroup = (*int64)(unsafe.Pointer(in.FSGroup))
    	out.Sysctls = *(*[]core.Sysctl)(unsafe.Pointer(&in.Sysctls))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

    addition to the container's primary GID and fsGroup (if specified).  If the SupplementalGroupsPolicy feature is enabled, the supplementalGroupsPolicy field determines whether these are in addition to or instead of any group memberships defined in the container image. If unspecified, no additional groups are added, though group memberships defined in the container image may still be used, depending on the supplementalGroupsPolicy field. Note that this field cannot be set when spec.os.name is windows.",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top