Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ConvertToRuntimeMaskedPaths (0.17 sec)

  1. pkg/kubelet/kuberuntime/security_context.go

    	synthesized := convertToRuntimeSecurityContext(effectiveSc)
    	if synthesized == nil {
    		synthesized = &runtimeapi.LinuxContainerSecurityContext{
    			MaskedPaths:   securitycontext.ConvertToRuntimeMaskedPaths(effectiveSc.ProcMount),
    			ReadonlyPaths: securitycontext.ConvertToRuntimeReadonlyPaths(effectiveSc.ProcMount),
    		}
    	}
    	var err error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. pkg/securitycontext/util.go

    	defaultReadonlyPaths = []string{
    		"/proc/bus",
    		"/proc/fs",
    		"/proc/irq",
    		"/proc/sys",
    		"/proc/sysrq-trigger",
    	}
    )
    
    // ConvertToRuntimeMaskedPaths converts the ProcMountType to the specified or default
    // masked paths.
    func ConvertToRuntimeMaskedPaths(opt *v1.ProcMountType) []string {
    	if opt != nil && *opt == v1.UnmaskedProcMount {
    		// Unmasked proc mount should have no paths set as masked.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 15 07:28:24 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top