Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 152 for fsGroup (0.12 sec)

  1. cluster/addons/dns/kube-dns/kube-dns.yaml.sed

        spec:
          priorityClassName: system-cluster-critical
          securityContext:
            seccompProfile:
              type: RuntimeDefault
            supplementalGroups: [ 65534 ]
            fsGroup: 65534
          affinity:
            podAntiAffinity:
              preferredDuringSchedulingIgnoredDuringExecution:
              - weight: 100
                podAffinityTerm:
                  labelSelector:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. samples/addons/loki.yaml

            app.kubernetes.io/part-of: memberlist
        spec:
          serviceAccountName: loki
          automountServiceAccountToken: true
          enableServiceLinks: true
          
          securityContext:
            fsGroup: 10001
            runAsGroup: 10001
            runAsNonRoot: true
            runAsUser: 10001
          terminationGracePeriodSeconds: 30
          containers:
            - name: loki
              image: docker.io/grafana/loki:3.0.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  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