containers/netavark

Feature Request: enable netavark to simply connect containers without any other network action

karampok opened this issue · 3 comments

I am using podman with CNI and specifically I am using that file

cat /etc/cni/net.d/access.conflist
{
   "cniVersion": "0.4.0",
   "name": "access",
   "plugins": [
      {
         "type": "bridge",
         "bridge": "access",
         "isGateway": false,
         "ipMasq": false,
         "hairpinMode": true,
         "ipam": {
            "type": ""
         }
      }
   ]
}

where the bridge have been created externally and manually. I would like to be able to the same.

Thanks

is this something you want to work on?

Is this different from an internal network (no external route) which we support already?

Internal blocks routing from the bridge interface via sysctl that may be different from CNI.
As for no ip addresses there is --ipam-driver=none option which should come close.