Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 203 for fsGroup (0.2 sec)

  1. pkg/volume/csi/csi_attacher.go

    	}
    
    	if driverSupportsCSIVolumeMountGroup {
    		klog.V(3).Infof("Driver %s supports applying FSGroup (has VOLUME_MOUNT_GROUP node capability). Delegating FSGroup application to the driver through NodeStageVolume.", csiSource.Driver)
    		nodeStageFSGroupArg = deviceMounterArgs.FsGroup
    	}
    
    	fsType := csiSource.FSType
    	err = csi.NodeStageVolume(ctx,
    		csiSource.VolumeHandle,
    		publishContext,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  2. helm/minio/values.yaml

    ## user and group NOTE: securityContext is only enabled if persistence.enabled=true
    securityContext:
      enabled: true
      runAsUser: 1000
      runAsGroup: 1000
      fsGroup: 1000
      fsGroupChangePolicy: "OnRootMismatch"
      readOnlyRootFilesystem: false
    
    # Additational pod annotations
    podAnnotations: {}
    
    # Additional pod labels
    podLabels: {}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    			volumeDeviceMounter, _ = deviceMountableVolumePlugin.NewDeviceMounter()
    		}
    
    		var fsGroup *int64
    		var fsGroupChangePolicy *v1.PodFSGroupChangePolicy
    		if podSc := volumeToMount.Pod.Spec.SecurityContext; podSc != nil {
    			if podSc.FSGroup != nil {
    				fsGroup = podSc.FSGroup
    			}
    			if podSc.FSGroupChangePolicy != nil {
    				fsGroupChangePolicy = podSc.FSGroupChangePolicy
    			}
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. pkg/volume/git_repo/git_repo.go

    	if output, err := b.execCommand("git", []string{"reset", "--hard"}, subdir); err != nil {
    		return fmt.Errorf("failed to exec 'git reset --hard': %s: %v", output, err)
    	}
    
    	volume.SetVolumeOwnership(b, dir, mounterArgs.FsGroup, nil /*fsGroupChangePolicy*/, volumeutil.FSGroupCompleteHook(b.plugin, nil))
    
    	volumeutil.SetReady(b.getMetaDir())
    	return nil
    }
    
    func (b *gitRepoVolumeMounter) getMetaDir() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_block.go

    		csiSource.VolumeHandle,
    		publishVolumeInfo,
    		stagingPath,
    		fsTypeBlockName,
    		accessMode,
    		nodeStageSecrets,
    		csiSource.VolumeAttributes,
    		nil, /* MountOptions */
    		nil /* fsGroup */)
    
    	if err != nil {
    		return "", err
    	}
    
    	klog.V(4).Infof(log("blockMapper.stageVolumeForBlock successfully requested NodeStageVolume [%s]", stagingPath))
    	return stagingPath, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. pkg/volume/secret/secret.go

    		// change the permissions on the whole volume and not only in the timestamp directory.
    		return volume.SetVolumeOwnership(b, dir, mounterArgs.FsGroup, nil /*fsGroupChangePolicy*/, volumeutil.FSGroupCompleteHook(b.plugin, nil))
    	}
    	err = writer.Write(payload, setPerms)
    	if err != nil {
    		klog.Errorf("Error writing payload to dir: %v", err)
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. pkg/volume/downwardapi/downwardapi.go

    		// change the permissions on the whole volume and not only in the timestamp directory.
    		return volume.SetVolumeOwnership(b, dir, mounterArgs.FsGroup, nil /*fsGroupChangePolicy*/, volumeutil.FSGroupCompleteHook(b.plugin, nil))
    	}
    	err = writer.Write(data, setPerms)
    	if err != nil {
    		klog.Errorf("Error writing payload to dir: %v", err)
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. pkg/volume/configmap/configmap.go

    		// change the permissions on the whole volume and not only in the timestamp directory.
    		return volume.SetVolumeOwnership(b, dir, mounterArgs.FsGroup, nil /*fsGroupChangePolicy*/, volumeutil.FSGroupCompleteHook(b.plugin, nil))
    	}
    	err = writer.Write(payload, setPerms)
    	if err != nil {
    		klog.Errorf("Error writing payload to dir: %v", err)
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. pkg/volume/portworx/portworx.go

    	if err := os.MkdirAll(dir, 0750); err != nil {
    		return err
    	}
    
    	if err := b.manager.MountVolume(b, dir); err != nil {
    		return err
    	}
    	if !b.readOnly {
    		volume.SetVolumeOwnership(b, dir, mounterArgs.FsGroup, mounterArgs.FSGroupChangePolicy, util.FSGroupCompleteHook(b.plugin, nil))
    	}
    	klog.Infof("Portworx Volume %s setup at %s", b.volumeID, dir)
    	return nil
    }
    
    func (pwx *portworxVolume) GetPath() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/core.v1.ReplicationController.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top