constellation/dev-docs/miniconstellation/setup-miniconstellation.sh
Adrian Stobbe 94b087197b
docs: how to set up MiniConstellation on Azure (#1999)
* init

* update doc

* move quick-setup to devdocs
2023-07-07 15:14:13 +02:00

29 lines
863 B
Bash
Executable File

#!/usr/bin/env bash
echo "Installing Constellation CLI"
curl -LO https://github.com/edgelesssys/constellation/releases/latest/download/constellation-linux-amd64
sudo install constellation-linux-amd64 /usr/local/bin/constellation
# Start docker service and auto start on boot
# TODO should be done in cloud-init but was not done in my test case
sudo systemctl start docker.service && sudo systemctl enable docker.service
echo "Waiting for docker service to be active..."
# Wait at most 20min
count=0
until systemctl is-active docker || [[ ${count} -eq 120 ]]; do
sleep 10
count=$((count + 1))
done
if [[ ${count} -eq 120 ]]; then
echo "Docker service did not come up in time."
exit 1
fi
# change to workspace
mkdir constellation_workspace
cd constellation_workspace || exit
# takes around 15 minutes
constellation mini up
echo "Cluster creation done."