22 lines
506 B
Bash
Executable File
22 lines
506 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
|
|
VERSION="v1.0.0"
|
|
DOWNLOAD=https://github.com/containernetworking/plugins/releases/download/${VERSION}/cni-plugins-linux-amd64-${VERSION}.tgz
|
|
TARGET_DIR=/opt/cni/bin
|
|
CONFIG_DIR=/opt/cni/config
|
|
|
|
function install_cni() {
|
|
mkdir -p ${TARGET_DIR} ${CONFIG_DIR}
|
|
if [[ -e ${TARGET_DIR}/${VERSION} ]] ; then
|
|
return
|
|
fi
|
|
|
|
curl -sSL --fail -o /tmp/cni-plugins.tar.gz ${DOWNLOAD}
|
|
tar -xf /tmp/cni-plugins.tar.gz -C ${TARGET_DIR}
|
|
touch ${TARGET_DIR}/${VERSION}
|
|
}
|
|
|
|
install_cni
|