Unverified Commit 2e73529c authored by k8s-ci-robot's avatar k8s-ci-robot Committed by GitHub

Merge pull request #58646 from adityadani/disable_selinux_for_portworx_volumes

Change the portworx volume attribute SupportsSELinux to false
parents 2e357e39 b757484e
......@@ -269,10 +269,9 @@ var _ volume.Mounter = &portworxVolumeMounter{}
func (b *portworxVolumeMounter) GetAttributes() volume.Attributes {
return volume.Attributes{
ReadOnly: b.readOnly,
Managed: !b.readOnly,
// true ?
SupportsSELinux: true,
ReadOnly: b.readOnly,
Managed: !b.readOnly,
SupportsSELinux: false,
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment