Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for selinuxRelabel (0.42 sec)

  1. pkg/kubelet/kubelet_pods.go

    		// If the volume supports SELinux and it has not been
    		// relabeled already and it is not a read-only volume,
    		// relabel it and mark it as labeled
    		if vol.Mounter.GetAttributes().Managed && vol.Mounter.GetAttributes().SELinuxRelabel && !vol.SELinuxLabeled {
    			vol.SELinuxLabeled = true
    			relabelVolume = true
    		}
    		hostPath, err := volumeutil.GetPath(vol.Mounter)
    		if err != nil {
    			return nil, cleanupAction, err
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    			// Mount device to global mount path
    			err = volumeDeviceMounter.MountDevice(
    				volumeToMount.VolumeSpec,
    				devicePath,
    				deviceMountPath,
    				volume.DeviceMounterArgs{FsGroup: fsGroup, SELinuxLabel: volumeToMount.SELinuxLabel},
    			)
    			if err != nil {
    				og.checkForFailedMount(volumeToMount, err)
    				og.markDeviceErrorState(volumeToMount, devicePath, deviceMountPath, err, actualStateOfWorld)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top