mirror of
https://github.com/kelseyhightower/kubernetes-the-hard-way.git
synced 2025-12-14 08:48:58 +03:00
17 lines
390 B
Plaintext
17 lines
390 B
Plaintext
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
ETCD3_RELEASE_VERSION=$1
|
||
|
|
|
||
|
|
pushd /tmp &> /dev/null
|
||
|
|
|
||
|
|
curl -sL "https://github.com/etcd-io/etcd/releases/download/$ETCD3_RELEASE_VERSION/etcd-$ETCD3_RELEASE_VERSION-linux-amd64.tar.gz" | tar -zxf -
|
||
|
|
|
||
|
|
mv etcd-$ETCD3_RELEASE_VERSION-linux-amd64/etcd /usr/bin/
|
||
|
|
mv etcd-$ETCD3_RELEASE_VERSION-linux-amd64/etcdctl /usr/bin/
|
||
|
|
|
||
|
|
rm -rf etcd*
|
||
|
|
|
||
|
|
touch .install_etcd
|
||
|
|
|
||
|
|
popd &> /dev/null
|