-
Notifications
You must be signed in to change notification settings - Fork 228
Incorrect privileges on image root #240
Comments
Looks like the problem is not in the OCI images themselves, but somewhere in Ignite itself:
|
There is also a problem with |
I just want to confirm, with fixing the image root's directory via |
Ping @luxas. Can you please have a quick look at this issue? Maybe could point us to the right code, where we could fix the folder permission in Ignite. |
So we basically do There we'd have to do |
|
can you send a PR for this please? |
Turns out the problem was not with the base image, but with the overlay. PR including some details at #249! |
I already tested this fix, works like a charm!!! 🎉👍🤓 Thanks 🙏, @praseodym! |
When running a VM with the
weaveworks/ignite-ubuntu:latest
image I ran into problems starting the systemd-resolved service (which is expected by kubeadm, at least when using kubespray). It turns out that this problem was caused by the non-rootsystemd-resolve
user not being able to access the sytemd-resolved binary.It turns out that this is because of incorrect privileges on the image's root directory:
A normal Linux system has
drwxr-xr-x
(0755) for/
. Both the Ubuntu and CentOS images have this problem.The text was updated successfully, but these errors were encountered: