#!/bin/bash # This script describes where to download the official released binaries needed # It's suggested to download using 'tools/easzup -D', everything needed will be ready in '/etc/ansible' # example releases K8S_VER=v1.13.7 ETCD_VER=v3.3.10 DOCKER_VER=18.09.6 CNI_VER=v0.7.5 DOCKER_COMPOSE_VER=1.23.2 HARBOR_VER=v1.5.4 CONTAINERD_VER=1.2.6 echo -e "\nNote: It's suggested to download using 'tools/easzup -D', everything needed will be ready in '/etc/ansible'." echo -e "\n----download k8s binary at:" echo -e https://dl.k8s.io/${K8S_VER}/kubernetes-server-linux-amd64.tar.gz echo -e "\n----download etcd binary at:" echo -e https://github.com/coreos/etcd/releases/download/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz echo -e https://storage.googleapis.com/etcd/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz echo -e "\n----download docker binary at:" echo -e https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VER}.tgz echo -e "\n----download ca tools at:" echo -e https://pkg.cfssl.org/R1.2/cfssl_linux-amd64 echo -e https://pkg.cfssl.org/R1.2/cfssljson_linux-amd64 echo -e https://pkg.cfssl.org/R1.2/cfssl-certinfo_linux-amd64 echo -e "\n----download docker-compose at:" echo -e https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VER}/docker-compose-Linux-x86_64 echo -e "\n----download harbor-offline-installer at:" echo -e https://storage.googleapis.com/harbor-releases/harbor-offline-installer-${HARBOR_VER}.tgz echo -e "\n----download cni plugins at:" echo -e https://github.com/containernetworking/plugins/releases echo -e "\n----download containerd at:" echo -e https://storage.googleapis.com/cri-containerd-release/cri-containerd-${CONTAINERD_VER}.linux-amd64.tar.gz