stackspout/install.sh

22 lines
612 B
Bash
Executable File

#!/usr/bin/env bash
kubectl get namespace stackspout 2>/dev/null || kubectl create namespace stackspout
echo "Creating / Updating gitRepository stackspout"
flux create source git stackspout \
--url=https://open.greenhost.net/xeruf/stackspout.git \
--branch=main \
--interval=5m
echo "Creating / Updating kustomization stackspout"
flux create kustomization stackspout \
--source=GitRepository/stackspout \
--path="./infrastructure/kustomizations/" \
--prune=true \
--interval=5m
flux bootstrap git \
--url=https://open.greenhost.net/xeruf/stackspout.git \
--branch=main \
--path=util/flux