17 lines
584 B
Bash
17 lines
584 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
## 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/staging
|
||
|
|
||
|
## this way is more automatic although it does ask for yes/no confirmation that the ssh key has repo access
|
||
|
flux bootstrap git \
|
||
|
--url="ssh://git@gitea.futureporn.net:2222/futureporn/fp" \
|
||
|
--branch=main \
|
||
|
--path="clusters/staging" \
|
||
|
--private-key-file=/home/cj/.ssh/fp-flux
|