Before Update
My tedge container in podman was started with the paramater:
podman run -d \
--userns keep-id \
...
When I run on the original container:
$ podman exec tedge ls -la /run/tedge-p11-server/tedge-p11-server.sock
srw-rw---- 1 tedge tedge 0 Oct 28 12:48 /run/tedge-p11-server/tedge-p11-server.sock
and
$ podman inspect tedge --format '{{.HostConfig.UsernsMode}}'
private
After Update
After the update this setting was not copied to the new container resulting in wrong permissions:
$ podman exec tedge ls -la /run/tedge-p11-server/tedge-p11-server.sock
srw-rw---- 1 root root 0 Oct 28 12:48 /run/tedge-p11-server/tedge-p11-server.sock
$ podman inspect tedge --format '{{.HostConfig.UsernsMode}}'
I use podman version 4.3.1.
Before Update
My
tedgecontainer in podman was started with the paramater:When I run on the original container:
and
After Update
After the update this setting was not copied to the new container resulting in wrong permissions:
I use podman version 4.3.1.