Add bootstrapper base

This commit is contained in:
2022-12-10 22:08:07 +01:00
commit 88d112b47b
20 changed files with 258 additions and 0 deletions

37
run.sh Executable file
View File

@@ -0,0 +1,37 @@
#!/bin/bash
set -e
echo "setting up kind"
pushd kind
./delete-kind.sh || true
./create-kind.sh
popd
echo "setting up boostrap cluster api"
pushd clusterapi
./initialize.sh
./load-secret.sh
./initialize-hetzner.sh
./get-config.sh
./add-cni.sh
./add-ccm.sh
./add-csi.sh
./move-clusters.sh
popd
echo "installing flux"
pushd flux
./bootstrap.sh
popd