Ruben Jenster

Results 43 comments of Ruben Jenster

@LabhanshAgrawal I will definitely take a look into your link provider. Thanks for the pointer!

Kindly ping. I have this issue too - annotation links are not working.

Since I messed around with the permissions already I've created a fresh container. ``` [root@k8s-cluster8-controller ~]# ls -al /usr/local/var/lib/lxc/test-systemd4/ total 16 drwxrwx--- 3 root root 4096 Feb 14 11:08 ....

Thanks! I've already played with the permissions (changed the permissions of the `rootfs` directory to `777`) but I didn't take the config and rootfs parent directory into account. After adding...

What really tricked me is that it's not the permissions on `rootfs` thats missing it really is the executable bit on it's parent. Tried `chown -R 10000:10000 /usr/local/var/lib/lxc/test-systemd4/rootfs` - but...

Thanks. I think I finally got it: * The mapped user ID must have execute permissions for all directories along the path to and including the rootfs. * File permissions...

Seems there's some more work to not break auto mounts ..

@brauner Currently my changes do break the auto mounts, since the mount-propagation for the auto mounts will change to 'shared' so they will propagate to the host - wich is...

I'm looking at it right now - hopefully i'll find a solution.

Right! I think I found the solution right now - simply making '/' shared before the rootfs mount should do it - i'll test again and push my changes and...