mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-20 09:05:26 +00:00
invalid arg during applying SELinux label
Tested with ubuntu 16.04 with selinux support. Actually after chcon with long label got: Invalid argument from cmd
This commit is contained in:
parent
b8d000853e
commit
63712cbb1c
@ -305,7 +305,7 @@ function start_kubelet {
|
||||
which chcon > /dev/null ; then
|
||||
if [[ ! $(ls -Zd /var/lib/kubelet) =~ system_u:object_r:svirt_sandbox_file_t:s0 ]] ; then
|
||||
echo "Applying SELinux label to /var/lib/kubelet directory."
|
||||
if ! chcon -R system_u:object_r:svirt_sandbox_file_t:s0 /var/lib/kubelet; then
|
||||
if ! sudo chcon -Rt svirt_sandbox_file_t /var/lib/kubelet; then
|
||||
echo "Failed to apply selinux label to /var/lib/kubelet."
|
||||
fi
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user