15.8.8. 使用 hostPath 卷插件
要缓解集群中的安全性,以便允许 pod 使用 hostPath
卷插件,而不授予每个人都对更多特权 SCC(如 特权、hostaccess 或 hostmount-anyuid )的访问权限,请执行以下操作:
-
创建名为
hostpath
的新 SCC 将新 SCC 的
allowHostDirVolumePlugin
参数设置为true
:$ oc patch scc hostpath -p '{"allowHostDirVolumePlugin": true}'
为所有用户授予对此 SCC 的访问权限:
$ oc adm policy add-scc-to-group hostpath system:authenticated
现在,hostPath
卷的所有 pod 都被 hostpath
SCC 接受。