constellation/dev-docs/miniconstellation/setup-miniconstellation.sh
3u13r a25c90e9bb
remove deprecated constellation create flags (#2325)
* chore: clean-up TODOs

* cli: make OpenStack error explicit

* cli: remove deprecated flags

* config: require DeployCSIDriver field
2023-09-08 21:15:02 +02:00

29 lines
872 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(elchead) 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."