From b757484e1d0d7ee9b0169dcf8caa524423474e62 Mon Sep 17 00:00:00 2001 From: Aditya Dani Date: Thu, 18 Jan 2018 23:15:36 +0000 Subject: [PATCH] Change the portworx volume attribute SupportsSELinux to false --- pkg/volume/portworx/portworx.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkg/volume/portworx/portworx.go b/pkg/volume/portworx/portworx.go index 8c1738bbaa4..d780a3e7106 100644 --- a/pkg/volume/portworx/portworx.go +++ b/pkg/volume/portworx/portworx.go @@ -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, } }