VTWO-14496 : rework the doc and generate the root CA

This commit is contained in:
mbenabda
2019-06-28 00:42:55 +02:00
parent 8d7c329d46
commit 4800ee5b62
8 changed files with 119 additions and 35 deletions

16
scripts/download_etcd Executable file
View File

@@ -0,0 +1,16 @@
#!/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 .download_etcd
popd &> /dev/null