Remove 10-containerd-net.conflist from cri-containerd-cni release tarball.

Signed-off-by: Lantao Liu <lantaol@google.com>
This commit is contained in:
Lantao Liu
2018-04-17 17:38:55 -07:00
parent b2ebb735e7
commit 72ade6c4f5
5 changed files with 60 additions and 30 deletions

View File

@@ -34,6 +34,9 @@ cd $(dirname "${BASH_SOURCE[0]}")
# and configurations in cluster.
INSTALL_CNI=${INSTALL_CNI:-true}
# INSTALL_CNI indicates whether to install CNI config.
INSTALL_CNI_CONFIG=${INSTALL_CNI_CONFIG:-true}
# Install runc
./install-runc.sh
@@ -42,6 +45,11 @@ if ${INSTALL_CNI}; then
./install-cni.sh
fi
# Install cni config
if ${INSTALL_CNI_CONFIG}; then
./install-cni-config.sh
fi
# Install containerd
./install-containerd.sh