Merge pull request #58646 from adityadani/disable_selinux_for_portworx_volumes

Change the portworx volume attribute SupportsSELinux to false
pull/58/head
k8s-ci-robot 2018-09-28 03:06:16 -07:00 committed by GitHub
commit 2e73529c9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -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,
}
}