Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 129 for fsGroup (0.16 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.StatefulSet.json

              },
              "runAsUser": 2,
              "runAsGroup": 6,
              "runAsNonRoot": true,
              "supplementalGroups": [
                4
              ],
              "fsGroup": 5,
              "sysctls": [
                {
                  "name": "nameValue",
                  "value": "valueValue"
                }
              ],
              "fsGroupChangePolicy": "fsGroupChangePolicyValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  2. pkg/volume/emptydir/empty_dir.go

    	case v1helper.IsHugePageMedium(ed.medium):
    		err = ed.setupHugepages(dir)
    	default:
    		err = fmt.Errorf("unknown storage medium %q", ed.medium)
    	}
    
    	volume.SetVolumeOwnership(ed, dir, mounterArgs.FsGroup, nil /*fsGroupChangePolicy*/, volumeutil.FSGroupCompleteHook(ed.plugin, nil))
    
    	// If setting up the quota fails, just log a message but don't actually error out.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K 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. pkg/volume/iscsi/iscsi.go

    }
    
    func (b *iscsiDiskMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	// diskSetUp checks mountpoints and prevent repeated calls
    	err := diskSetUp(b.manager, *b, dir, b.mounter, mounterArgs.FsGroup, mounterArgs.FSGroupChangePolicy)
    	if err != nil {
    		klog.Errorf("iscsi: failed to setup")
    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.SELinuxMountReadWriteOncePod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/api/pod/util_test.go

    		return &api.Pod{
    			Spec: api.PodSpec{
    				Containers: []api.Container{
    					{
    						Name:  "container1",
    						Image: "testimage",
    					},
    				},
    				SecurityContext: &api.PodSecurityContext{
    					FSGroup:             &podFSGroup,
    					FSGroupChangePolicy: &changePolicy,
    				},
    			},
    		}
    	}
    	podInfos := []struct {
    		description                  string
    		newPodHasFSGroupChangePolicy bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. 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)
  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. api/openapi-spec/v3/apis__apps__v1_openapi.json

              },
              "fsGroup": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
Back to top