Change the portworx volume attribute SupportsSELinux to false

This commit is contained in:
Aditya Dani 2018-01-18 23:15:36 +00:00
parent 48f69ac964
commit b757484e1d

View File

@ -248,10 +248,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,
}
}