diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-07-21 05:54:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-21 05:54:57 -0400 |
commit | df6920aa79073b2767d24c6524367384b6284b31 (patch) | |
tree | b56fdbd8b13f4edf3c3e0638b0f970533157d50b /cni/README.md | |
parent | 1682e60dac14d9f32ae02c5f3286b3309cd9b128 (diff) | |
parent | 841eac0af651d7afa4749a65f4e773815b5c715c (diff) | |
download | podman-df6920aa79073b2767d24c6524367384b6284b31.tar.gz podman-df6920aa79073b2767d24c6524367384b6284b31.tar.bz2 podman-df6920aa79073b2767d24c6524367384b6284b31.zip |
Merge pull request #7009 from rhatdan/containers.conf
Switch references from libpod.conf to containers.conf
Diffstat (limited to 'cni/README.md')
-rw-r--r-- | cni/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cni/README.md b/cni/README.md index 2683df714..bc37df1eb 100644 --- a/cni/README.md +++ b/cni/README.md @@ -5,7 +5,7 @@ directory just contains an example configuration that can be used as the basis for your own configuration. To use this configuration, place it in `/etc/cni/net.d` (or the directory -specified by `cni_config_dir` in your `libpod.conf`). +specified by `cni_config_dir` in your `containers.conf`). For example a basic network configuration can be achieved with: @@ -14,4 +14,4 @@ sudo mkdir -p /etc/cni/net.d curl -qsSL https://raw.githubusercontent.com/containers/libpod/master/cni/87-podman-bridge.conflist | sudo tee /etc/cni/net.d/87-podman-bridge.conf ``` -Dependent upon your CNI configuration, you will need to install as a minimum the `port` and `bridge` [CNI plugins](https://github.com/containernetworking/plugins) into `/opt/cni/bin` (or the directory specified by `cni_plugin_dir` in libpod.conf). Please refer to the [CNI](https://github.com/containernetworking) project page in GitHub for more information. +Dependent upon your CNI configuration, you will need to install as a minimum the `port` and `bridge` [CNI plugins](https://github.com/containernetworking/plugins) into `/opt/cni/bin` (or the directory specified by `cni_plugin_dir` in containers.conf). Please refer to the [CNI](https://github.com/containernetworking) project page in GitHub for more information. |