-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include containernetworking-plugins in ubuntu deps #201
Conversation
Not including the containernetworking-plugins package on Ubuntu Server 20.04 LTS gives the following error when building and running from source: ``` WARN[0001] Failed to load cached network config: network podman not found in CNI cache, falling back to loading network podman from disk WARN[0001] 1 error occurred: * plugin type="tuning" failed (delete): failed to find plugin "tuning" in path [/usr/local/libexec/cni /usr/libexec/cni /usr/local/lib/cni /usr/lib/cni /opt/cni/bin] Error: plugin type="bridge" failed (add): failed to find plugin "bridge" in path [/usr/local/libexec/cni /usr/libexec/cni /usr/local/lib/cni /usr/lib/cni /opt/cni/bin] ```
For newer podman versions we should use |
@smartin015 thanks for the PR. @lsm5 just updated this same document pretty significantly. I'm not sure you got his changes or not. Lokesh, thoughts? I concur with @Luap99 , we're moving away from CNI, we should talk about netavark/aardvark-dns unless we're talking about old versions of the code (Podman 3.* and below) |
hmm, do we even have nv / av on 20.04 LTS? https://launchpad.net/ubuntu/+source/netavark Maybe we'll need separate sections for nv/av and cni ? |
@smartin015 could you please revise your PR to add a separate section for ubuntu 20.04 below the current ubuntu section? We would prefer not to mention cni unless required. Thanks. |
@smartin015 also, please sign your commit to get the DCO task successful. See: https://github.com/containers/podman.io/pull/201/checks?check_run_id=16176897846 |
Continuing PR containers#201 from Scott Martin <[email protected]> Signed-off-by: Lokesh Mandvekar <[email protected]>
closing this in favour of #206. |
Continuing PR containers#201. From: Scott Martin <[email protected]> Signed-off-by: Lokesh Mandvekar <[email protected]>
Continuing PR containers#201. From: Scott Martin <[email protected]> Signed-off-by: Lokesh Mandvekar <[email protected]>
Not including the containernetworking-plugins package on Ubuntu Server 20.04 LTS gives the following error when building and running from source:
After
sudo apt -y install containernetworking-plugins
, this message goes away and I can sucessfully start a container.