Merge pull request #116425 from jsafrane/flip-selinux

Flip SELinuxMountReadWriteOncePod to Beta
This commit is contained in:
Kubernetes Prow Robot
2023-03-14 16:34:41 -07:00
committed by GitHub
14 changed files with 178 additions and 7 deletions

View File

@@ -120,5 +120,6 @@ func (hu *FakeHostUtil) GetMode(pathname string) (os.FileMode, error) {
// GetSELinuxMountContext returns value of -o context=XYZ mount option on
// given mount point.
func (hu *FakeHostUtil) GetSELinuxMountContext(pathname string) (string, error) {
return "", errors.New("not implemented")
// This pretends the OS does not support SELinux.
return "", nil
}