ETCD Install

Install the latest version of etcd.

bash
1
2
3
4
5
6
ETCD_VER=v3.5.14
DOWNLOAD_URL=https://github.com/etcd-io/etcd/releases/download

curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C ~/etcd --strip-components=1
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz

Move executable to system path.

bash
1
2
3
sudo mv ~/etcd/etcd /usr/local/bin/
sudo mv ~/etcd/etcdctl /usr/local/bin/
sudo mv ~/etcd/etcdutl /usr/local/bin/