Merge pull request #3605 from nc-ruth/patch-1

"mkdir -p /etc/cni/net.d" requires sudo
This commit is contained in:
OpenShift Merge Robot 2019-07-22 13:30:50 +02:00 committed by GitHub
commit ab7b47ca60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ A proper description of setting up CNI networking is given in the [`cni` README]
Using the CNI plugins from above, a more basic network config is achieved with:
```bash
mkdir -p /etc/cni/net.d
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/99-loopback.conf
```