Skip to content

Instantly share code, notes, and snippets.

@skynet86
Created May 10, 2020 13:34
Show Gist options
  • Save skynet86/451c42ec3dc883e190aa7c57bc6c2acc to your computer and use it in GitHub Desktop.
Save skynet86/451c42ec3dc883e190aa7c57bc6c2acc to your computer and use it in GitHub Desktop.
Install etcdctl - Ubuntu
#!/bin/bash
ETCD_VERSION=${ETCD_VERSION:-v3.3.1}
curl -L https://github.com/coreos/etcd/releases/download/$ETCD_VERSION/etcd-$ETCD_VERSION-linux-amd64.tar.gz -o etcd-$ETCD_VERSION-linux-amd64.tar.gz
tar xzvf etcd-$ETCD_VERSION-linux-amd64.tar.gz
rm etcd-$ETCD_VERSION-linux-amd64.tar.gz
cd etcd-$ETCD_VERSION-linux-amd64
sudo cp etcd /usr/local/bin/
sudo cp etcdctl /usr/local/bin/
rm -rf etcd-$ETCD_VERSION-linux-amd64
etcdctl --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment