etcd install
https://etcd.io/docs/v3.6/install/ Install pre-built binaries Download the compressed archive file for your platform from Releases ETCD_VER=v3.6.6 # choose either URL GOOGLE_URL=https://storage.googleapis.com/etcd GITHUB_URL=https://github.com/etcd-io/etcd/releases/download DOWNLOAD_URL=${GOOGLE_URL} curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz Unpack the archive file. This results in a directory containing the binaries. tar xvf etcd-${ETCD_VER}-linux-amd64.tar.gz Add the executable binaries to your path. For example, rename and/or move the... » read more