2022-03-30 19:28:59 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-04-13 07:46:20 +01:00
|
|
|
kubectl get namespace stackspout 2>/dev/null || kubectl create namespace stackspout
|
|
|
|
|
2022-07-06 11:25:31 +01:00
|
|
|
echo "Creating / Updating gitRepository stackspout"
|
2022-04-13 07:46:20 +01:00
|
|
|
flux create source git stackspout \
|
|
|
|
--url=https://open.greenhost.net/xeruf/stackspout.git \
|
2022-03-30 19:28:59 +02:00
|
|
|
--branch=main \
|
2022-07-03 18:08:12 +01:00
|
|
|
--interval=5m
|
2022-03-30 19:28:59 +02:00
|
|
|
|
2022-07-06 11:25:31 +01:00
|
|
|
echo "Creating / Updating kustomization stackspout"
|
2022-04-13 07:46:20 +01:00
|
|
|
flux create kustomization stackspout \
|
|
|
|
--source=GitRepository/stackspout \
|
2022-07-06 11:25:31 +01:00
|
|
|
--path="./basic/infrastructure/kustomizations/" \
|
2022-03-30 19:28:59 +02:00
|
|
|
--prune=true \
|
2022-07-12 22:45:06 +01:00
|
|
|
--interval=5m
|
2022-06-27 21:37:14 +01:00
|
|
|
|
2022-07-09 02:25:01 +02:00
|
|
|
python $(dirname "$0")/../generate_secrets.py vikunja
|
2022-07-18 21:22:08 +01:00
|
|
|
python $(dirname "$0")/../generate_secrets.py vikunja-test
|
2022-07-09 02:25:01 +02:00
|
|
|
python $(dirname "$0")/../generate_secrets.py gitea
|
2022-07-06 11:25:31 +01:00
|
|
|
python $(dirname "$0")/../generate_secrets.py suitecrm
|
2022-07-20 09:23:08 +01:00
|
|
|
python $(dirname "$0")/../generate_secrets.py kimai
|