fp/scripts/flux-bootstrap.sh

22 lines
733 B
Bash
Raw Normal View History

2024-05-28 05:17:49 +00:00
#!/bin/bash
if [ -z "$(ENV)" ]; then \
echo "Error: ENV variable is not defined. Please set to one of development|staging|production"; exit 1; \
fi
2024-06-17 17:46:32 +00:00
## this way is annoying because deployment asks for git password
# flux bootstrap git \
# --kubeconfig /home/cj/.kube/vke.yaml \
# --url=https://gitea.futureporn.net/futureporn/fp.git \
# --branch=main \
# --username=cj_clippy \
# --token-auth=true \
# --path=clusters/production
## this way is more automatic although it does ask for yes/no confirmation that the ssh key has repo access
2024-05-28 05:17:49 +00:00
flux bootstrap git \
--yes \
2024-06-17 17:46:32 +00:00
--url="ssh://git@gitea.futureporn.net:2222/futureporn/fp" \
2024-05-28 05:17:49 +00:00
--branch=main \
--path="clusters/$ENV" \
2024-06-17 17:46:32 +00:00
--private-key-file=/home/cj/.ssh/fp-flux