argoproj / argoproj-deployments

Deployment repository for Argoproj CI/CD
https://cd.apps.argoproj.io
235 stars 124 forks source link

Bootstrapping a project with a configuration similar to this one #9

Open NesManrique opened 3 years ago

NesManrique commented 3 years ago

Hello,

I am creating a repo using a similar approach to this one but using helm instead of kustomize. I have a couple questions regarding the setup that I couldn't find explanations in the docs:

1) When you guys bootstrap it in a cluster for the first time I'm guessing the steps are more or less:

2) I was wondering why is kustomize the suggested tool to manage argo with argo. Do you have any specific pointers or recommendations if I were to do it with helm instead?

joebowbeer commented 3 years ago

Since helm installs CRDs before other resources, you could accomplish everything in one helm install, like this:

https://github.com/kurtburak/argocd

Self Managed ArgoCD - App of Everything

NesManrique commented 3 years ago

Thank you very much for the inspirational example! Will try something similar