Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for fsGroup (0.12 sec)

  1. 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)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "fsGroup": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. 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)
  4. pkg/apis/core/zz_generated.deepcopy.go

    	}
    	if in.SupplementalGroupsPolicy != nil {
    		in, out := &in.SupplementalGroupsPolicy, &out.SupplementalGroupsPolicy
    		*out = new(SupplementalGroupsPolicy)
    		**out = **in
    	}
    	if in.FSGroup != nil {
    		in, out := &in.FSGroup, &out.FSGroup
    		*out = new(int64)
    		**out = **in
    	}
    	if in.FSGroupChangePolicy != nil {
    		in, out := &in.FSGroupChangePolicy, &out.FSGroupChangePolicy
    		*out = new(PodFSGroupChangePolicy)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	}
    	if in.SupplementalGroupsPolicy != nil {
    		in, out := &in.SupplementalGroupsPolicy, &out.SupplementalGroupsPolicy
    		*out = new(SupplementalGroupsPolicy)
    		**out = **in
    	}
    	if in.FSGroup != nil {
    		in, out := &in.FSGroup, &out.FSGroup
    		*out = new(int64)
    		**out = **in
    	}
    	if in.Sysctls != nil {
    		in, out := &in.Sysctls, &out.Sysctls
    		*out = make([]Sysctl, len(*in))
    		copy(*out, *in)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.5.md

    * AWS: Add sequential allocator for device names. ([#38818](https://github.com/kubernetes/kubernetes/pull/38818), [@jsafrane](https://github.com/jsafrane))
    * Fix fsGroup to vSphere ([#38655](https://github.com/kubernetes/kubernetes/pull/38655), [@abrarshivani](https://github.com/abrarshivani))
    
    
    
    # v1.5.2
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    				// Create the sub path now because if it's auto-created later when referenced, it may have an
    				// incorrect ownership and mode. For example, the sub path directory must have at least g+rwx
    				// when the pod specifies an fsGroup, and if the directory is not created here, Docker will
    				// later auto-create it with the incorrect mode 0750
    				// Make extra care not to escape the volume!
    				perm, err := hu.GetMode(volumePath)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.4.md

    * Add TLS conf for Go1.7 ([#38600](https://github.com/kubernetes/kubernetes/pull/38600), [@k82cn](https://github.com/k82cn))
    * Fix fsGroup to vSphere ([#38655](https://github.com/kubernetes/kubernetes/pull/38655), [@abrarshivani](https://github.com/abrarshivani))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    		mp, ok := globalIAMSys.store.GetMappedPolicy(mapping.Policy, mapping.IsGroup)
    		if ok && mp.UpdatedAt.After(updatedAt) {
    			return nil
    		}
    	}
    
    	// When LDAP is enabled, we verify that the user or group exists in LDAP and
    	// use the normalized form of the entityName (which will be an LDAP DN).
    	userType := IAMUserType(mapping.UserType)
    	isGroup := mapping.IsGroup
    	entityName := mapping.UserOrGroup
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top