diff options
author | Bin Hu <bh526r@att.com> | 2018-09-18 05:45:15 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-09-18 05:45:15 +0000 |
commit | be88f0d19f136f8c5693d5fe93011936e7249eca (patch) | |
tree | 8fec3b11fc9f63aa1093b27af7ac7b95532c40aa | |
parent | a2900c4ecc53e6132e6dd8353ebd312aa400b862 (diff) | |
parent | 52aa8149abbe8cb83fd121e13baf37285b20753a (diff) |
Merge "Remove NFD from list of AddOns"
-rwxr-xr-x | vagrant/installer.sh | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/vagrant/installer.sh b/vagrant/installer.sh index f6f2f76a..5ac06513 100755 --- a/vagrant/installer.sh +++ b/vagrant/installer.sh @@ -187,20 +187,6 @@ function install_plugin { popd } -# _install_crictl() - Install Container Runtime Interface (CRI) CLI -function _install_crictl { - local version="v1.0.0-alpha.0" # More info: https://github.com/kubernetes-incubator/cri-tools#current-status - - wget https://github.com/kubernetes-incubator/cri-tools/releases/download/$version/crictl-$version-linux-amd64.tar.gz - tar zxvf crictl-$version-linux-amd64.tar.gz -C /usr/local/bin - rm -f crictl-$version-linux-amd64.tar.gz - - cat << EOL > /etc/crictl.yaml -runtime-endpoint: unix:///run/criproxy.sock -image-endpoint: unix:///run/criproxy.sock -EOL -} - # _print_kubernetes_info() - Prints the login Kubernetes information function _print_kubernetes_info { if ! $(kubectl version &>/dev/null); then @@ -219,7 +205,7 @@ function _print_kubernetes_info { } # Configuration values -addons="virtlet ovn-kubernetes multus nfd" +addons="virtlet ovn-kubernetes multus" krd_folder="$(dirname "$0")" verbose="" |