Created
December 2, 2016 14:05
-
-
Save pingles/2e3da25be53a0a3dade16f0e468cca5a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
mkdir -p /tmp/cni | |
cd /tmp/cni | |
wget https://github.com/projectcalico/calico-cni/releases/download/v1.5.2/calico -O calico | |
wget https://github.com/containernetworking/cni/releases/download/v0.3.0/cni-v0.3.0.tgz -O cni.tar.gz | |
tar zxvf cni.tar.gz | |
rm cni.tar.gz | |
mkdir -p /opt/cni/bin | |
cp * /opt/cni/bin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment