Hi @pierrecnalb,
I learned about your project by your post to this opencloud discussion. I appreciate the work you put into this.
From your README.md I got:
The quadlets are designed to be used as root with the following features:
- pods are used to host related containers
- containers are properly isolated from each other within their own user namespace
Looking into the opencloud directory I see that you create a pod with option UserNS=auto. According to podman-pod-create(1) this creates one user namespace for the pod. So the containers assigned to the pod share the same user namespace.
So the containers are isoloated from one another on pod level, not on container level, right? Please don't take this as critisism, I'm asking for clarification as the README could be interpreted otherwise.
What do you think about using UserNS=auto with rootless users as Daniel suggested in this comment?
Best regards,
Tronde
Hi @pierrecnalb,
I learned about your project by your post to this opencloud discussion. I appreciate the work you put into this.
From your README.md I got:
Looking into the opencloud directory I see that you create a pod with option
UserNS=auto. According topodman-pod-create(1)this creates one user namespace for the pod. So the containers assigned to the pod share the same user namespace.So the containers are isoloated from one another on pod level, not on container level, right? Please don't take this as critisism, I'm asking for clarification as the README could be interpreted otherwise.
What do you think about using
UserNS=autowith rootless users as Daniel suggested in this comment?Best regards,
Tronde