Unable to deploy Connector docker

Unable to deploy the connector in a docker on Ubuntu 22.04

Errors out with the following:

docker: Error response from daemon: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: write /proc/sys/net/ipv4/ping_group_range: invalid argument: unknown.

Looks like this is a permissions issue. Disabling SELinux seems to resolve this issue (there are plenty of discussion about SELinux) or perhaps just changing the permissions on /proc/sys/net/ipv4/ping_group_range

sudo chmod 777 /proc/sys/net/ipv4/ping_group_range or similar might do the trick.

I am not able to reproduce on my side, but let’s see where that gets us.