Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PodFSGroupChangePolicy (0.41 sec)

  1. pkg/apis/core/types.go

    type Sysctl struct {
    	// Name of a property to set
    	Name string
    	// Value of a property to set
    	Value string
    }
    
    // PodFSGroupChangePolicy holds policies that will be used for applying fsGroup to a volume
    // when volume is mounted.
    type PodFSGroupChangePolicy string
    
    const (
    	// FSGroupChangeOnRootMismatch indicates that volume's ownership and permissions will be changed
    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

    	// +listType=atomic
    	Hostnames []string `json:"hostnames,omitempty" protobuf:"bytes,2,rep,name=hostnames"`
    }
    
    // PodFSGroupChangePolicy holds policies that will be used for applying fsGroup to a volume
    // when volume is mounted.
    // +enum
    type PodFSGroupChangePolicy string
    
    const (
    	// FSGroupChangeOnRootMismatch indicates that volume's ownership and permissions will be changed
    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. CHANGELOG/CHANGELOG-1.20.md

    This setting enables a pod to specify a `PodFSGroupChangePolicy` that indicates that volume ownership and permissions will be changed only when permission and ownership of the root directory do not match with expected permissions on the volume.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    	out.FSGroup = (*int64)(unsafe.Pointer(in.FSGroup))
    	out.Sysctls = *(*[]core.Sysctl)(unsafe.Pointer(&in.Sysctls))
    	out.FSGroupChangePolicy = (*core.PodFSGroupChangePolicy)(unsafe.Pointer(in.FSGroupChangePolicy))
    	out.SeccompProfile = (*core.SeccompProfile)(unsafe.Pointer(in.SeccompProfile))
    	out.AppArmorProfile = (*core.AppArmorProfile)(unsafe.Pointer(in.AppArmorProfile))
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    	}
    	return allErrors
    }
    
    var validFSGroupChangePolicies = sets.New(core.FSGroupChangeOnRootMismatch, core.FSGroupChangeAlways)
    
    func validateFSGroupChangePolicy(fsGroupPolicy *core.PodFSGroupChangePolicy, fldPath *field.Path) field.ErrorList {
    	allErrors := field.ErrorList{}
    	if !validFSGroupChangePolicies.Has(*fsGroupPolicy) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top