[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-linux-amd64
[ $(uname -m) = aarch64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-linux-arm64
chmod +x ./kind
sudo mv ./kind /usr/local/bin/kind
curl -s https://fluxcd.io/install.sh | sudo bash
echo "# automation-full" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin git@github.com:yourrepo/automation-full.git
git push -u origin main
export GITHUB_TOKEN=<gh-token>
kind create cluster --name novo --config $PWD/kind.yml
kubectl config use-context kind-novo
Change command below to your github repository name
flux bootstrap github \
--token-auth \
--owner=my-github-username \
--repository=my-repository-name \
--branch=main \
--path=clusters/thiscluster \
--personal
Add your new apps in clusters/thiscluster/apps in argocd Application Format or, add your apps in helmrelease format in manifests and add in kustomization.yaml file
watch kubectl get gitrepo,ks,hr -A
flux reconcile ks flux-system
flux reconcile ks thiscluster
kubectl get secrets -n argocd argocd-initial-admin-secret -o jsonpath={.data.password} | base64 -d
Open your browser and point to https://argocd.172.17.0.90.nip.io/ using admin ( username ) and passowrd got above.
kind delete cluster --name novo